addTags
Create new tags in the system with optional metadata.
Examples
mutation AddTags($input: AddTagInput!) {
addTags(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": {
"tagsInput": [
{
"name": "Custom Tag",
"displayName": "Custom Tag"
}
]
}
}
Arguments
You can use the following argument(s) to customize your addTags
mutation.
input AddTagInput!
required
Input containing array of tags to be created with their properties
tagsInput [TagDTO!]!
Fields
Return type: AddTagRes
You can use the following field(s) to specify what information your addTags
mutation will return. Please note that some fields may have their own subfields.
tags [TagObject!]!
Array of newly created tag objects
tagId String!
name String!
displayName String!
tagType OxTagType!
createdBy String!
createdAt DateTime
updatedAt DateTime
tagCategory String
deploymentModel String
purpose String
email String
Last updated