fixed bug in README

This commit is contained in:
Peter Svensson
2021-02-02 15:49:32 +01:00
parent 706a4f4ddd
commit f2c775b36a
2 changed files with 4 additions and 5 deletions

View File

@ -105,16 +105,15 @@ input:
{ {
"payload": { "payload": {
"path": "foo/bar", "path": "foo/bar",
"queries":[],
"limit": 7, "limit": 7,
"startAt": 4000, // follows the orderBy property "startAt": 4000, // follows the orderBy property
"endAt": 4050, // follows the orderBy property "endAt": 4050, // follows the orderBy property
"orderBy": "shoeSize", "orderBy": "shoeSize",
"orderDirection": "asc", //default is "desc" "orderDirection": "asc", //default is "desc"
"queries":[ "queries":[
{"company", "==", "ACME"}, ["company", [=="] "ACME"],
{"createdAt", ">", 1560099394242} ["createdAt", ">", 1560099394242]
] ]
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "node-red-contrib-firebase-admin", "name": "node-red-contrib-firebase-admin",
"version": "1.1.28", "version": "1.1.29",
"description": "A node-red module that wraps the server-side admin SDK of firebase, firestore, et.c.", "description": "A node-red module that wraps the server-side admin SDK of firebase, firestore, et.c.",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {