Skip to main content

collectionSeoUpdate Mutation

Description

Updates the SEO metadata for a collection.

mutation collectionSeoUpdate($collectionRef: ID!, $seoInput: SeoInput!) {
collectionSeoUpdate(collectionRef: $collectionRef, seoInput: $seoInput) {
_id
created
createdBy {
type
name
email
ref
}
id
title
description {
content
}
handle
sort {
key
order
}
viewType
seo {
index
description
slug
title
}
path
banner {
format
}
segments {
_id
title
}
}
}

Variables

{
"collectionRef": "2de3c1870c350183a653240b",
"seoInput": {
"title": "title",
"description": "A description",
"index": true,
"slug": "slug"
}
}

Response

{
"collectionSeoUpdate": {
"_id": "8d5275f2ac6c3294bb544680",
"created": 1773002593268,
"createdBy": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "0b1bdac58ae066f057a4dadc"
},
"id": 4253138894494,
"title": "example",
"description": {
"content": "example"
},
"handle": "example",
"sort": {
"key": "example",
"order": 42
},
"viewType": "example",
"seo": {
"index": true,
"description": "example",
"slug": "example",
"title": "example"
},
"path": "/release/1763553751/release-artist-release-name",
"banner": {
"format": "example"
},
"segments": [
{
"_id": "bafaa976d786c1d5678359a0",
"title": "example"
}
]
}
}

Arguments

NameTypeDescription
collectionRefID!Reference ID of the collection to update (required)
seoInputSeoInput!SeoInput object containing metadata (required)

Returns

Collection!