Link - Hi no one know why i have : Firestore Co...
Hi no one know why i have : Firestore Collection Query with multiple filters : Value for argument "value" is not a valid ...
#Firestore Collection Query with multiple filters : Value for argument "value" is not a valid ...
Please 😦
Solution:Jump to solution
Hi @Link, the
object validation
node's result here will be false (you can confirm by clicking the green arrow icon). As in Body
you are giving an Object but it only accepts and validates object. Due to which in the second node Firestore Collection Query
, the value you are referencing from body is breaking (invalid
),
To fix this, either pass the body as a valid object.
```{...2 Replies
Hi @Link, answered with the solution in your BuildShip post, Also pasting here. Feel free to continue any follwup question in the post on BuildShip help.
Solution
Hi @Link, the
object validation
node's result here will be false (you can confirm by clicking the green arrow icon). As in Body
you are giving an Object but it only accepts and validates object. Due to which in the second node Firestore Collection Query
, the value you are referencing from body is breaking (invalid
),
To fix this, either pass the body as a valid object.
Or remove the object validation node, and reference it in the filter's value as (x)Body[0].type
note: array's are always accessed by their index through dot notation.