OBJECT

ImagineList

Imagine List

link GraphQL Schema definition

  • type ImagineList {
  • # Id
  • id: Int!
  • # Images that belong to the ImagineList
  • images: [ImagineImageList]!
  • # Is the ImagineList has been customized?
  • isCustomized: Boolean
  • rankOrder: Criteria!
  • # Date of creation
  • createdAt: DateTime!
  • # Date of last update
  • updatedAt: DateTime!
  • # Site that own this ImagineList
  • site: Site
  • # Site that own this ImagineList, without access checks.
  • sitePublic: PublicSite
  • # Translations
  • translations: [ImagineListTranslation!]!
  • # Title
  • title: String @deprecated( reason: "Please use "translations" field instead." )
  • # Description
  • description: String @deprecated( reason: "Please use "translations" field instead." )
  • # ImagineList parent, if exists
  • parent: ImagineList
  • # Inheritance status
  • inheritanceStatus: String!
  • }