Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This query will output all of the workflow data and you can use Find to search if a group is being used inside of a workflow, for example as approvers, acknowledgers, or in an integration.

Additional queries

All parts (permissions, forms, workflow) in one query for a single application

Code Block
query {
  app (id:"5f7f6c10f3e6933e8a8bf89f") {
    name
    formContainer {
      schema {
        type
        label
      	details
      }
    }
    listPolicyGroups {
      name
      identities {
      	type
        label
        displayName
      }
    }
    workflow
  }
}