2021-09-22 17:30:15 -07:00
|
|
|
mutation removeTag($input: TagAssociationInput!) {
|
2021-09-13 09:16:37 -07:00
|
|
|
removeTag(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)
|
|
|
|
}
|
|
|
|
|
2021-09-22 17:30:15 -07:00
|
|
|
mutation removeTerm($input: TermAssociationInput!) {
|
2021-09-13 09:16:37 -07:00
|
|
|
removeTerm(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
|
|
|
|
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)
|
|
|
|
}
|