modifyAppsTags
Modify tags associated with applications by adding and/or removing tags.
Examples
mutation ModifyAppsTags($input: ModifyAppsTagsInput!) {
modifyAppsTags(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": {
"appIds": ["30966426"],
"addedTagsIds": ["example"],
"removedTagsIds": ["example"]
}
}
Arguments
You can use the following argument(s) to customize your modifyAppsTags
mutation.
Argument
Description
Supported fields
input ModifyAppsTagsInput!
required
Input specifying applications and tags to be added or removed
appIds [String!]!
addedTagsIds [String!]!
removedTagsIds [String!]!
Fields
Return type: Acknowledge!
You can use the following field(s) to specify what information your modifyAppsTags
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