Jeff Brainerd
03/26/2020, 6:43 PMquery {
flow_run {
name
parameters(path: "company_slug")
}
}
Kyle Moon-Wright
03/26/2020, 6:55 PMquery {
flow_run(where: {parameters: {_contains: "table"}}) {
id
name
}
}
Jeff Brainerd
03/26/2020, 7:17 PMKyle Moon-Wright
03/26/2020, 7:19 PMJeff Brainerd
03/26/2020, 7:20 PMquery {
flow_run(where: {
_and: {
flow: {
name: { _eq: "jf_data_pipeline" }
version_group_id: { _eq: "staging"},
archived: { _eq: false }
}
state: { _eq: "Running" },
parameters: { _contains: { company_slug: "acmecorp" } },
}
}) {
flow_id
state
}
}
Loving the GraphQL API!Kyle Moon-Wright
03/26/2020, 8:20 PM