Schpouet'
Schpouet'•5mo ago

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:
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. ```{...
Jump to solution
2 Replies
Gaurav Chadha
Gaurav Chadha•5mo ago
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
Gaurav Chadha
Gaurav Chadha•5mo ago
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.
{
"type": "House",
"hidden": false
}
{
"type": "House",
"hidden": false
}
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.