krapomusic
BBuildShip
•Created by krapomusic on 1/12/2025 in #❓・buildship-help
Use query result for a new action
Hey everyone,
I can't find a documentation for this, can you point me in the right direction ?
In a workflow, i created a FireStore query with specific parameters, which returns an array of documents (along with document data and document ID).
I want to create a new document in a different table for each user that appears in the 'user' field of these documents. How do i do this ?
Thank you
5 replies
BBuildShip
•Created by krapomusic on 12/29/2024 in #❓・buildship-help
Simple filter by date in a Firestore query
Hey everyone,
I just started trying BuildShip and I'm already stuck on something that should be very easy, however I can't find the right documentation.
I made a Firebase collection query, I tested it without any filter and it does return the elements I expect. However I can't figure out the correct syntax of the filter to only return elements where "NextOccurence" property is before the current date and time.
{
field: "NextOccurence",
operator: "<=",
value: Date.now(),
}
Can you help ?6 replies