setAppOwners

Set or update application owners with their respective roles.

Examples

mutation SetAppOwners($input: SetApplicationsOwnersByRoleInput!) {
  setAppOwners(input: $input) {
    acknowledge
  }
}

Variables

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

{
  "input": {
    "ownersByRoleInput": [
      {
        "role": "Dev",
        "owners": [
          {
            "name": "SomeName",
            "email": "[email protected]",
            "appIds": ["30966426"]
          }
        ]
      }
    ]
  }
}

Arguments

You can use the following argument(s) to customize your setAppOwners mutation.

Argument
Description
Supported fields

Input containing owner assignments with their roles for applications

ownersByRoleInput [OwnersByRoleInput!]!

Fields

Return type: Acknowledge!

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

Field
Description
Supported fields

acknowledge Boolean!

Boolean indicating if the operation was successful

Last updated