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": "76ea474929a1fac2ecb341a9",
"seoInput": {
"title": "title",
"description": "A description",
"index": true,
"slug": "slug"
}
}
Response
{
"collectionSeoUpdate": {
"_id": "c657d1ced021afa506280d77",
"created": 1739619385136,
"createdBy": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "7ce814f7a320641b546553ad"
},
"id": 8369912679406,
"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": "30593c6de285752cafeb7fe7",
"title": "example"
}
]
}
}
Arguments
| Name | Type | Description |
|---|---|---|
collectionRef | ID! | Reference ID of the collection to update (required) |
seoInput | SeoInput! | SeoInput object containing metadata (required) |