10 lines
201 B
GraphQL
10 lines
201 B
GraphQL
mutation UpdatePrivateMetadata($id: ID!, $input: [MetadataInput!]!) {
|
|
updatePrivateMetadata(id: $id, input: $input) {
|
|
item {
|
|
privateMetadata {
|
|
key
|
|
value
|
|
}
|
|
}
|
|
}
|
|
}
|