PageInput
No description
input PageInput {
slug: String
title: String
content: JSONString
attributes: [AttributeValueInput!]
isPublished: Boolean
publicationDate: String
publishedAt: DateTime
seo: SeoInput
}
Fields
PageInput.slug
● String
scalar miscellaneous
Page internal name.
PageInput.title
● String
scalar miscellaneous
Page title.
PageInput.content
● JSONString
scalar miscellaneous
Page content.
Rich text format. For reference see https://editorjs.io/
PageInput.attributes
● [AttributeValueInput!]
list input attributes
List of attributes.
PageInput.isPublished
● Boolean
scalar miscellaneous
Determines if page is visible in the storefront.
PageInput.publicationDate
● String
scalar miscellaneous
Publication date. ISO 8601 standard.
DEPRECATED: this field will be removed in Saleor 4.0. Use
publishedAt
field instead.
PageInput.publishedAt
● DateTime
scalar miscellaneous
Publication date time. ISO 8601 standard.
Added in Saleor 3.3
PageInput.seo
● SeoInput
input miscellaneous
Search engine optimization fields.
Member Of
pageUpdate
mutation