JamesG
BRBuildShip + Rowy
•Created by JamesG on 10/30/2024 in #❓・buildship-help
Selecting multi-word fields
4 replies
BRBuildShip + Rowy
•Created by JamesG on 10/16/2024 in #❓・buildship-help
Cache period?
When I first hit my API it checks against an array in Firestore, and takes ~2s to respond. Subsequent calls are much faster, which implies that the node is caching the array it pulls, but only for a few minutes.
Is there some way I can extend this caching to 24h, as the data it pulls is not updated often?
8 replies
BRBuildShip + Rowy
•Created by JamesG on 4/15/2024 in #❓・buildship-help
Filtering a Firestore call with OR condition
Hi, I'm trying to retrieve all documents with one or both of two booleans set to "true".
I've tried all sorts of variants on the below but no joy:
{
"condition": "OR",
"rules": [
{
"field": "behaviourist",
"operator": "==",
"value": true
},
{
"field": "trainer",
"operator": "==",
"value": true
}
]
}
Thanks in advance!
5 replies