OBJECT
Article
link GraphQL Schema definition
- type Article {
- # Id
- : Int!
- # Medias
- : [ArticleMedia]!
- # Categories
- : [Category]
- # Limit of medias
- : Int
- # Status
- : ArticleStatus!
- # Should print button be displayed?
- : Boolean!
- # Should print address be displayed?
- : Boolean!
- # Should return button be displayed?
- : Boolean
- # Should image caption be showed?
- : Boolean
- # Shoud slider be auto-played?
- : Boolean!
- # Routes
- : [ArticleRoute]!
- # Should we share on Facebook?
- : Boolean!
- # Display Twitter share button?
- : Boolean!
- # Display LinkedIn share button?
- : Boolean!
- # Priority of display's order
- : Int!
- # Activate gallery? For plymouth theme only
- : Boolean!
- # Featured image size. For plymouth theme only
- : MediaSize
- # Parent article, if exists
- : Article
- # Date of creation
- : DateTime!
- # Date of last update
- : DateTime!
- # Date of publication
- : DateTime!
- # An ISO 639-1 valid locale, e.g.: fr, en, pt, ...
- : String
- # Translations
- : [ArticleTranslation!]!
- # Inheritance status
- : String!
- # Site that owns this Article
- : Site
- # Site that own this Article, without access restriction on this field.
- : PublicSite
- # List of tags linked to this article
- : [Tag!]!
- }