OBJECT

Image

link GraphQL Schema definition

  • type Image implements Node {
  • id: ID!
  • # The storage key of the image.
  • storageKey: String
  • # The url of the image.
  • url: String
  • # Used to identify the variant of the image.
  • variantKey: String
  • metadata: Map
  • # The width of the image.
  • width: Int
  • # The height of the image.
  • height: Int
  • completed: Boolean!
  • # The video that this image belongs to.
  • video: Video
  • }