Skip to main content

CollectionInput Input Type

No description

input CollectionInput {
isPublished: Boolean
name: String
slug: String
description: JSONString
backgroundImage: Upload
backgroundImageAlt: String
seo: SeoInput
publicationDate: Date @deprecated
metadata: [MetadataInput!]
privateMetadata: [MetadataInput!]
}

Fields

CollectionInput.isPublished ● Boolean scalar miscellaneous

Informs whether a collection is published.

CollectionInput.name ● String scalar miscellaneous

Name of the collection.

CollectionInput.slug ● String scalar miscellaneous

Slug of the collection.

CollectionInput.description ● JSONString scalar miscellaneous

Description of the collection.

Rich text format. For reference see https://editorjs.io/

CollectionInput.backgroundImage ● Upload scalar miscellaneous

Background image file.

CollectionInput.backgroundImageAlt ● String scalar miscellaneous

Alt text for an image.

CollectionInput.seo ● SeoInput input miscellaneous

Search engine optimization fields.

CollectionInput.publicationDate ● Date deprecated scalar miscellaneous

DEPRECATED

No longer supported

Publication date. ISO 8601 standard.

CollectionInput.metadata ● [MetadataInput!] list input miscellaneous

Fields required to update the collection metadata. Can be read by any API client authorized to read the object it's attached to.

Warning: never store sensitive information, including financial data such as credit card details.

CollectionInput.privateMetadata ● [MetadataInput!] list input miscellaneous

Fields required to update the collection private metadata. Requires permissions to modify and to read the metadata of the object it's attached to.

Warning: never store sensitive information, including financial data such as credit card details.

Member Of

collectionUpdate mutation