Co-authored-by: Vivek R <123vivekr@gmail.com> Co-authored-by: Liyas Thomas <liyascthomas@gmail.com>
9 lines
183 B
GraphQL
9 lines
183 B
GraphQL
mutation RenameUserCollection($userCollectionID: ID!, $newTitle: String!) {
|
|
renameUserCollection(
|
|
userCollectionID: $userCollectionID
|
|
newTitle: $newTitle
|
|
) {
|
|
id
|
|
}
|
|
}
|