Jennifer Meng
07/16/2020, 8:14 PMmutation($parameters: JSON!) {create_flow_run(input: { flow_id: "my_flow_id", parameters: $parameters }) {id}}
{"parameters":{"param1":"my_param1"}}
Argument 'input' has invalid value {flow_id: \"my_flow_id\", parameters: $parameters}.
Zachary Hughes
07/16/2020, 8:54 PMmy_flow_id
with an actual flow ID, I'm able to successfully run the mutation you posted.
Do you mind sharing how you're trying to run this mutation?Jennifer Meng
07/16/2020, 9:50 PMZachary Hughes
07/16/2020, 9:53 PMJennifer Meng
07/16/2020, 10:20 PMZachary Hughes
07/16/2020, 10:24 PMmutation($parameters: JSON!) {create_flow_run(input: { flow_id: "my-flow-id", parameters: $parameters }) {id}}
And my variable definition section looks like this:
{
"parameters": {
"param1": "my_param1"
}
}
Jennifer Meng
07/17/2020, 3:37 PM