mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-29 04:20:00 +00:00
68 lines
1.4 KiB
GraphQL
68 lines
1.4 KiB
GraphQL
mutation removeTag($input: TagAssociationInput!) {
|
|
removeTag(input: $input)
|
|
}
|
|
|
|
mutation addTag($input: TagAssociationInput!) {
|
|
addTag(input: $input)
|
|
}
|
|
|
|
mutation removeTerm($input: TermAssociationInput!) {
|
|
removeTerm(input: $input)
|
|
}
|
|
|
|
mutation addTerm($input: TermAssociationInput!) {
|
|
addTerm(input: $input)
|
|
}
|
|
|
|
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)
|
|
}
|
|
|
|
mutation updateDescription($input: DescriptionUpdateInput!) {
|
|
updateDescription(input: $input)
|
|
}
|
|
|
|
mutation setDomain($entityUrn: String!, $domainUrn: String!) {
|
|
setDomain(entityUrn: $entityUrn, domainUrn: $domainUrn)
|
|
}
|
|
|
|
mutation unsetDomain($entityUrn: String!) {
|
|
unsetDomain(entityUrn: $entityUrn)
|
|
}
|
|
|
|
mutation setTagColor($urn: String!, $colorHex: String!) {
|
|
setTagColor(urn: $urn, colorHex: $colorHex)
|
|
}
|
|
|
|
mutation updateDeprecation($input: UpdateDeprecationInput!) {
|
|
updateDeprecation(input: $input)
|
|
}
|
|
|
|
mutation addOwners($input: AddOwnersInput!) {
|
|
addOwners(input: $input)
|
|
}
|
|
|
|
mutation addTags($input: AddTagsInput!) {
|
|
addTags(input: $input)
|
|
}
|
|
|
|
mutation addTerms($input: AddTermsInput!) {
|
|
addTerms(input: $input)
|
|
}
|
|
|
|
mutation updateName($input: UpdateNameInput!) {
|
|
updateName(input: $input)
|
|
}
|