INPUT_OBJECT
CreateArticleInput
Input type for creating an Article
link GraphQL Schema definition
- input CreateArticleInput {
- # Translations of the Article
- : [CreateArticleInputTranslations!]!
- # Array of categories ids
- : [Int!]!
- # Array of medias ids, in ascending ordered
- : [ArticleMediasInput!]
- # Date of publication (format: Y-m-dTH:i:s)
- : String
- # Publication status
- : ArticleStatus!
- # Display Facebook share button?
- : Boolean
- # Display Twitter share button?
- : Boolean
- # Display LinkedIn share button?
- : Boolean
- # Maximum number of medias
- : Int
- # Priority of display's order
- : Int!
- # Activate gallery? For plymouth theme only
- : Boolean
- # Featured image size. For plymouth theme only
- : MediaSize
- }