Is it possible to query for a flow's idempotency key via graphql api? Pretty sure the answer is "no" bc I don't see it in the flow schema, but just double-checking that there isn't some secret way.
z
Zach Angell
10/12/2021, 10:03 PM
hey @Casey Green the flow's idempotency key actually lives on the FlowGroup object, the query should be something like
Copy code
query {
flows {
id
name
flow_group {
settings <- this actually has the idempotency key
}
}
}