Trying to run a Flow of Flows but I'm getting this...
# ask-community
m
Trying to run a Flow of Flows but I'm getting this:
Copy code
Unexpected error: ClientError('400 Client Error: Bad Request for url: <http://prefect-apollo:4200/graphql/graphql>\n\nThe following error messages were provided by the GraphQL server:\n\n GRAPHQL_VALIDATION_FAILED: Cannot query field "user" on type "Query".\n\nThe GraphQL query was:\n\n query {\n user {\n default_membership {\n tenant {\n slug\n }\n }\n }\n }\n\nThe passed variables were:\n\n null\n',)
It seems to be finding the flows, though - the first time I tried it, it complained that I hadn't provided a necessary parameter.
c
Hi matta - this was a known issue but doesn’t seem to be well documented as a GitHub issue; the fix was released back in December (this PR: https://github.com/PrefectHQ/prefect/pull/3850) What version of Prefect are you running?
m
0.13.19
Hrm, so it actually did kick off two of the tasks!
But it was supposed to wait and execute them in sequence.
c
yea this was released with 0.14.0; the line of code that causes this error is run prior to the waiting logic
@Marvin archive “Cannot query field user on type query when using StartFlowRun task”
m
So this is fixed in 0.14+?
c
yup
m
Nice! Gonna bug Ops about how we might go about upgrading. Thanks!
👍 1