2021-09-22 17:30:15 -07:00
|
|
|
mutation removeTag($input: TagAssociationInput!) {
|
2021-09-13 09:16:37 -07:00
|
|
|
removeTag(input: $input)
|
|
|
|
}
|
|
|
|
|
2022-08-02 08:38:44 -07:00
|
|
|
mutation batchRemoveTags($input: BatchRemoveTagsInput!) {
|
|
|
|
batchRemoveTags(input: $input)
|
|
|
|
}
|
|
|
|
|
2021-09-22 17:30:15 -07:00
|
|
|
mutation addTag($input: TagAssociationInput!) {
|
2021-09-13 09:16:37 -07:00
|
|
|
addTag(input: $input)
|
|
|
|
}
|
|
|
|
|
2022-08-02 08:38:44 -07:00
|
|
|
mutation batchAddTags($input: BatchAddTagsInput!) {
|
|
|
|
batchAddTags(input: $input)
|
|
|
|
}
|
|
|
|
|
2021-09-22 17:30:15 -07:00
|
|
|
mutation removeTerm($input: TermAssociationInput!) {
|
2021-09-13 09:16:37 -07:00
|
|
|
removeTerm(input: $input)
|
|
|
|
}
|
|
|
|
|
2022-08-02 15:20:24 -07:00
|
|
|
mutation batchRemoveTerms($input: BatchRemoveTermsInput!) {
|
|
|
|
batchRemoveTerms(input: $input)
|
|
|
|
}
|
|
|
|
|
2021-09-22 17:30:15 -07:00
|
|
|
mutation addTerm($input: TermAssociationInput!) {
|
2021-09-13 09:16:37 -07:00
|
|
|
addTerm(input: $input)
|
|
|
|
}
|
2021-09-22 08:34:45 -07:00
|
|
|
|
2022-08-02 15:20:24 -07:00
|
|
|
mutation batchAddTerms($input: BatchAddTermsInput!) {
|
|
|
|
batchAddTerms(input: $input)
|
|
|
|
}
|
|
|
|
|
2021-09-28 10:30:37 -07:00
|
|
|
mutation addLink($input: AddLinkInput!) {
|
|
|
|
addLink(input: $input)
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation removeLink($input: RemoveLinkInput!) {
|
|
|
|
removeLink(input: $input)
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation addOwner($input: AddOwnerInput!) {
|
|
|
|
addOwner(input: $input)
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation removeOwner($input: RemoveOwnerInput!) {
|
|
|
|
removeOwner(input: $input)
|
|
|
|
}
|
|
|
|
|
2021-09-22 08:34:45 -07:00
|
|
|
mutation updateDescription($input: DescriptionUpdateInput!) {
|
|
|
|
updateDescription(input: $input)
|
|
|
|
}
|
2022-01-27 22:02:41 -08:00
|
|
|
|
|
|
|
mutation setDomain($entityUrn: String!, $domainUrn: String!) {
|
|
|
|
setDomain(entityUrn: $entityUrn, domainUrn: $domainUrn)
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation unsetDomain($entityUrn: String!) {
|
|
|
|
unsetDomain(entityUrn: $entityUrn)
|
|
|
|
}
|
2022-02-24 22:03:00 +05:30
|
|
|
|
2022-03-04 11:51:31 -08:00
|
|
|
mutation setTagColor($urn: String!, $colorHex: String!) {
|
2022-02-24 22:03:00 +05:30
|
|
|
setTagColor(urn: $urn, colorHex: $colorHex)
|
2022-03-04 11:51:31 -08:00
|
|
|
}
|
2022-04-07 19:17:24 -07:00
|
|
|
|
|
|
|
mutation updateDeprecation($input: UpdateDeprecationInput!) {
|
|
|
|
updateDeprecation(input: $input)
|
|
|
|
}
|
2022-05-27 20:32:03 +05:30
|
|
|
|
|
|
|
mutation addOwners($input: AddOwnersInput!) {
|
|
|
|
addOwners(input: $input)
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation addTags($input: AddTagsInput!) {
|
|
|
|
addTags(input: $input)
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation addTerms($input: AddTermsInput!) {
|
|
|
|
addTerms(input: $input)
|
2022-05-30 00:26:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
mutation updateName($input: UpdateNameInput!) {
|
|
|
|
updateName(input: $input)
|
|
|
|
}
|