Skip to main content

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 miscellaneous

Page internal name.

PageCreateInput.title ● String scalar miscellaneous

Page title.

PageCreateInput.content ● JSONString scalar miscellaneous

Page content.

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

PageCreateInput.attributes ● [AttributeValueInput!] list input attributes

List of attributes.

PageCreateInput.isPublished ● Boolean scalar miscellaneous

Determines if page is visible in the storefront.

PageCreateInput.publicationDate ● String scalar miscellaneous

Publication date. ISO 8601 standard.

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

PageCreateInput.publishedAt ● DateTime scalar miscellaneous

Publication date time. ISO 8601 standard.

Added in Saleor 3.3

PageCreateInput.seo ● SeoInput input miscellaneous

Search engine optimization fields.

PageCreateInput.pageType ● ID! non-null scalar miscellaneous

ID of the page type that page belongs to.

Member Of

pageCreate mutation