Matt Delacour
08/26/2022, 5:15 PM_or
statement in GraphQL?
Cannot make it work on my side.
There is nothing about _or
or _and
in the doc nor in GithubChristopher Boyd
08/26/2022, 7:11 PMquery Flows ($project_id: uuid!){
flow (where:
{ _and: [
{project_id: {_eq: $project_id}},
{archived: {_eq: false}} ]
})
{
id
flow_group_id,
name,
project_id,
is_schedule_active
}
}
a or b
it’s or: [{a}, {b}]
Matt Delacour
08/26/2022, 8:27 PM