Trying to do a Flow of Flows - the outer flow starts running, but the first of the inner flows fails...
m
Trying to do a Flow of Flows - the outer flow starts running, but the first of the inner flows fails with
Unexpected error: ClientError([{'path': ['user'], 'message': 'field "user" not found in type: \'query_root\'', 'extensions': {'path': '$.selectionSet.user', 'code': 'validation-failed', 'exception': {'message': 'field "user" not found in type: \'query_root\''}}}])
(we're on 0.13.19). Anyone know what might be up?
k
Hey @Matthew Alhonte, not sure. Is this for all
StartFlowRun
calls you do? Or just that specific subflow?
m
@Kevin Kho All of them produce that (this is the first time we've tried to run a Flow of Flows though, so not totally sure how that interacts with our infra)
k
Oh man. So this is caused by a bad query that is used to generate a URL link for the flow run. Did you have any
StartFlowRun
tasks succeeding before? I’d need to check the changelog to see if anything was patched
m
Interesting! Nope, this is the first experiment with it.
k
Ah well looks like there was a patch in 0.14.0 šŸ˜ž . PR here
m
Aha, thanks!
Might be able to monkeypatch this! šŸ™‚
Woohoo, it worked! Thanks again!