OBJECT

Article

link GraphQL Schema definition

  • type Article {
  • # Id
  • id: Int!
  • # Medias
  • articleMedias: [ArticleMedia]!
  • # Categories
  • categories: [Category]
  • # Limit of medias
  • mediaLimit: Int
  • # Status
  • status: ArticleStatus!
  • # Should print button be displayed?
  • displayPrintButton: Boolean!
  • # Should print address be displayed?
  • displayPrintAddress: Boolean!
  • # Should return button be displayed?
  • withReturnButton: Boolean
  • # Should image caption be showed?
  • showImageCaption: Boolean
  • # Shoud slider be auto-played?
  • autoPlaySlider: Boolean!
  • # Routes
  • routes: [ArticleRoute]!
  • # Should we share on Facebook?
  • shareOnFacebook: Boolean!
  • # Display Twitter share button?
  • displayTwitterShareButton: Boolean!
  • # Display LinkedIn share button?
  • displayLinkedInShareButton: Boolean!
  • # Priority of display's order
  • displayOrder: Int!
  • # Activate gallery? For plymouth theme only
  • galleryEnable: Boolean!
  • # Featured image size. For plymouth theme only
  • featuredImageFormat: MediaSize
  • # Parent article, if exists
  • parent: Article
  • # Date of creation
  • createdAt: DateTime!
  • # Date of last update
  • updatedAt: DateTime!
  • # Date of publication
  • publicationDate: DateTime!
  • # An ISO 639-1 valid locale, e.g.: fr, en, pt, ...
  • defaultLocale: String
  • # Translations
  • translations: [ArticleTranslation!]!
  • # Inheritance status
  • inheritanceStatus: String!
  • # Site that owns this Article
  • site: Site
  • # Site that own this Article, without access restriction on this field.
  • sitePublic: PublicSite
  • # List of tags linked to this article
  • tags: [Tag!]!
  • }