getAllTags
Retrieve all tags in the system including both user-defined and system (ox) tags.
Examples
query GetAllTags($input: GetTagsInput) {
getAllTags(input: $input) {
tags {
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.
{
"input": {
"filters": {
"tagType": ["simple"],
"tagId": ["ox_tag_1"]
}
}
}
Arguments
You can use the following argument(s) to customize your getAllTags
query.
input GetTagsInput
Input parameters for filtering tags by type, ID, and other criteria
filters GetTagsFilters
Fields
Return type: GetAllTagsResponse!
You can use the following field(s) to specify what information your getAllTags
query will return. Please note that some fields may have their own subfields.
tags [TagObject!]!
Array of tags matching the query criteria
tagId String!
name String!
displayName String!
tagType OxTagType!
createdBy String!
createdAt DateTime
updatedAt DateTime
tagCategory String
deploymentModel String
purpose String
email String
Last updated