forked from datahub-project/datahub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmutations.graphql
51 lines (39 loc) · 1.13 KB
/
mutations.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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)
}