OBJECT

ArticleTranslation

link GraphQL Schema definition

  • type ArticleTranslation implements TranslationInterface {
  • id: Int!
  • # An ISO 639-1 valid locale, e.g.: fr, en, pt, ...
  • locale: String!
  • # Translation of attribute « title »
  • title: String
  • # Translation of attribute « listTitle »
  • listTitle: String
  • # Translation of attribute « body »
  • body: String
  • # Translation of attribute « summary »
  • summary: String
  • # Should summary be displayed?
  • displaySummary: Boolean
  • # Translation of attribute « preview »
  • preview: String
  • # Translation of attribute « slug »
  • slug: String
  • # Custom route for the article
  • customRoute: String
  • # Date format for creation date display
  • creationDateFormat: String
  • # Time format for creation time display
  • creationTimeFormat: String
  • # Override meta title?
  • overrideMetaTitle: Boolean
  • # Meta title for SEO
  • metaTitle: String
  • # Override meta keyword?
  • overrideMetaKeyword: Boolean
  • # Meta keyword for SEO
  • metaKeyword: String
  • # Override meta description?
  • overrideMetaDescription: Boolean
  • # Meta description for SEO
  • metaDescription: String
  • # Override meta canonical?
  • overrideMetaCanonical: Boolean
  • # Meta canonical URL
  • metaCanonical: String
  • # Override meta canonical with self URL?
  • overrideMetaCanonicalWithSelfUrl: Boolean
  • }

link Require by