getAppOwnersByAppIdsAndRole

Retrieve application owners filtered by application IDs and roles.

Examples

query GetAppOwnersByAppIdsAndRole($input: GetAppOwnersByAppIdsAndRoleInput) {
  getAppOwnersByAppIdsAndRole(input: $input) {
    role
    owners {
      name
      email
      appIds
    }
  }
}

Variables

This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.

{
  "input": {
    "appIds": ["30966426"],
    "roles": ["Dev"]
  }
}

Arguments

You can use the following argument(s) to customize your getAppOwnersByAppIdsAndRole query.

Argument
Description
Supported fields

Input parameters specifying application IDs and roles to filter owners

appIds [String!]! roles [AppOwnerRole!]!

Fields

Return type: [GetAppOwnersByAppIdsAndRoleRes!]

You can use the following field(s) to specify what information your getAppOwnersByAppIdsAndRole query will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

Role for which owners were retrieved

List of app owners with the specified role

name String! email String! appIds [String!]!

Last updated