OBJECT

Media

Media object

link GraphQL Schema definition

  • type Media {
  • # ID of the Media
  • id: ID!
  • # URL of the Media
  • path: String!
  • # width of the image
  • width: Int
  • # height of the image
  • height: Int
  • # IMG tag of the image with srcset
  • responsiveHTML: String
  • # large size of the Media
  • large: MediaSize
  • # medium size of the Media
  • medium: MediaSize
  • # small size of the Media
  • small: MediaSize
  • # tiny size of the Media
  • tiny: MediaSize
  • }