Is it possible to query for a flow's idempotency k...
# prefect-server
c
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
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
     }
  }
}
upvote 1
c
ah, perfect thanks!