OBJECT
Article
link GraphQL Schema definition
- type Article {
- # Id
- : Int
- # Medias
- : [ArticleMedia]!
- # Categories
- : [Category]
- # Status
- : ArticleStatus!
- # Routes
- : [ArticleRoute]!
- # Priority of display's order
- : Int!
- # 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!]!
- # Should route be auto-generated?
- : Boolean!
- # Should article be referenced in search engines?
- : Boolean!
- # Header type (h1, h2, etc.)
- : String
- # Custom CSS class
- : String
- # Start date of publication
- : DateTime
- # Stop date of publication
- : DateTime
- # [LEGACY] Media limit (from Weymouth DTO)
- : Int!
- # [LEGACY] Share on Facebook? (from Weymouth common DTO)
- : Boolean!
- # [LEGACY] Display Twitter share button? (from Weymouth common DTO)
- : Boolean!
- # [LEGACY] Display LinkedIn share button? (from Weymouth common DTO)
- : Boolean!
- # Plymouth theme specific settings
- : ArticlePlymouthDTO
- # Weymouth theme specific settings
- : ArticleWeymouthDTO
- }