-
Hello prefect community, I have a question: The above query does not work say an error: Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @najoshi7 try something like this: query = {
"query": {
with_args(
"flow",
{
"where": {
"_and": {
"project": {
"name": {"_eq": "user1"},
},
"name": {"_eq": "workflow-2"},
}
}
},
): {"name": True, "id": True}
}
}
client.graphql(query) |
Beta Was this translation helpful? Give feedback.
Hi @najoshi7 try something like this: