Skip to main content
Version: 3.x

PageCreateInput

No description

input PageCreateInput {
slug: String
title: String
content: JSONString
attributes: [AttributeValueInput!]
isPublished: Boolean
publicationDate: String
publishedAt: DateTime
seo: SeoInput
pageType: ID!
}

Fields

PageCreateInput.slug ● String scalar

Page internal name.

PageCreateInput.title ● String scalar

Page title.

PageCreateInput.content ● JSONString scalar

Page content.

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

PageCreateInput.attributes ● [AttributeValueInput!] list input

List of attributes.

PageCreateInput.isPublished ● Boolean scalar

Determines if page is visible in the storefront.

PageCreateInput.publicationDate ● String scalar

Publication date. ISO 8601 standard.

DEPRECATED: this field will be removed in Saleor 4.0. Use publishedAt field instead.

PageCreateInput.publishedAt ● DateTime scalar

Publication date time. ISO 8601 standard.

Added in Saleor 3.3

PageCreateInput.seo ● SeoInput input

Search engine optimization fields.

PageCreateInput.pageType ● ID! non-null scalar

ID of the page type that page belongs to.

Member of

pageCreate mutation


Was this page helpful?