PageCreateInput
Exactly like Page, but no publishedAt or Status (Status is set to DRAFT on create).
input PageCreateInput {
author: String
contentItemIds: [ID!]
demandHqId: ID!
description: String
pageType: String!
primaryImageUrl: String
secondaryImageUrl: String
seoDescription: String
seoTitle: String
slug: String!
storefrontIds: [ID]
subtitle: String
tags: [String]
tertiaryImageUrl: String
title: String!
}
Fields
PageCreateInput.author ● String scalar
The author of the page, limit 256 characters.
PageCreateInput.contentItemIds ● [ID!] list scalar
The ContentItemIds of the Content Items that are associated with this page.
PageCreateInput.demandHqId ● ID! non-null scalar
PageCreateInput.description ● String scalar
A short description of the page, limit 1000 characters.
PageCreateInput.pageType ● String! non-null scalar
Any string to declare a category of this page, can be used to filter pages, limit 128 characters.
PageCreateInput.primaryImageUrl ● String scalar
A primary image url for this page, can be generated from a Page ContentItem.
PageCreateInput.secondaryImageUrl ● String scalar
A secondary image url for this page, often a logo or related item.
PageCreateInput.seoDescription ● String scalar
Description specific for SEO purposes, limit 170 characters.
PageCreateInput.seoTitle ● String scalar
Title specific for SEO purposes, limit 256 characters.
PageCreateInput.slug ● String! non-null scalar
Slug for the URL for this page. Limit 128 characters.
PageCreateInput.storefrontIds ● [ID] list scalar
Which storefronts should have access to this page?
PageCreateInput.subtitle ● String scalar
The subtitle of the page, limit 256 characters.
PageCreateInput.tags ● [String] list scalar
PageCreateInput.tertiaryImageUrl ● String scalar
A tertiary image url for this page, not often used.
PageCreateInput.title ● String! non-null scalar
The title of the page, limit 256 characters.
Member of
createPage mutation