Update README.md

This commit is contained in:
unborn-andy 2022-01-04 22:41:08 +02:00 committed by GitHub
parent 8fb1169fa0
commit c2f7cb7bc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ When using Via msg.topic or Batch without response msg.topic must hold the query
When using msg.topic, parameters can be passed in the query using a msg.payload array. Ex:
```
msg.topic = `INSERT INTO test (name, surname) VALUES ($name, $surname)`
msg.topic = `INSERT INTO table (name, surname) VALUES ($name, $surname)`
msg.payload = ["John", "Smith"]
return msg;
```