Mutation
mutation ReorderGalleryGroup($input: ReorderGalleryGroupInput!) {
reorderGalleryGroup(input: $input) {
clientMutationId
errors
galleryGroup {
canDelete
galleryPage
galleryType
id
isEnabled
label
}
}
}Variables
{
"input": {
"galleryGroupId": "id"
}
}Response
{
"data": {
"reorderGalleryGroup": {
"clientMutationId": "string",
"errors": [
"string"
],
"galleryGroup": {
"canDelete": true,
"galleryPage": "DISCOVERY",
"galleryType": "BUNDLES",
"id": "id",
"isEnabled": true,
"label": "string"
}
}
}
}Mutations
reorderGalleryGroup
Reorder a gallery section within its page. Pass exactly one of atTop,
atBottom, or atItemId (the ID of a sibling section to insert above). See
docs/reordering.md for the full protocol.
Required scope: host:write:network_settings
MUTATION
reorderGalleryGroup(input: ReorderGalleryGroupInput!): ReorderGalleryGroupPayloadArguments
input
required
Parameters for ReorderGalleryGroup
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
errors
[String!]!
galleryGroup
Mutation
mutation ReorderGalleryGroup($input: ReorderGalleryGroupInput!) {
reorderGalleryGroup(input: $input) {
clientMutationId
errors
galleryGroup {
canDelete
galleryPage
galleryType
id
isEnabled
label
}
}
}Variables
{
"input": {
"galleryGroupId": "id"
}
}Response
{
"data": {
"reorderGalleryGroup": {
"clientMutationId": "string",
"errors": [
"string"
],
"galleryGroup": {
"canDelete": true,
"galleryPage": "DISCOVERY",
"galleryType": "BUNDLES",
"id": "id",
"isEnabled": true,
"label": "string"
}
}
}
}