getAppTags

Retrieve tags associated with applications with optional filtering and pagination.

Examples

query GetAppTags($getAppsTagsInput: GetAppsTagsInput) {
  getAppTags(getAppsTagsInput: $getAppsTagsInput) {
    appsTags {
      tagType
      appId
      tagId
      appliedBy
      roles
      tag {
        tagId
        name
        displayName
        tagType
        createdBy
        createdAt
        updatedAt
        tagCategory
        deploymentModel
        purpose
        email
      }
    }
  }
}

Variables

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

{
  "getAppsTagsInput": {
    "filters": {
      "appId": ["30966426"],
      "tagId": ["ox_tag_1"],
      "tagType": ["simple"]
    }
  }
}

Arguments

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

Argument
Description
Supported fields

getAppsTagsInput GetAppsTagsInput

Input parameters for filtering and paginating application tags

Fields

Return type: GetAppsTagsRes!

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

Field
Description
Supported fields

List of application tags matching the query criteria

tagType OxTagType! appId String! tagId String! appliedBy String roles [AppOwnerRole!] tag TagObject

Last updated