GraphQL Schema definition

  • interface Image {
  • id: ID!
  • filename: String
  • # If the image supports multiple resolutions this may be used to retrieve the
  • # image at an alternative resolution.
  • #
  • # Arguments
  • # resolution: Selects the resolution of the image to retrieve.
  • # The resolution
  • # must be in the `resolutions` list.
  • # Default: "original"
  • resizeUrl(resolution: PhotoResolution!): String
  • # A set of resolutions the image is available at.
  • resolutions: [PhotoResolution!]
  • # The height of the image in pixels.
  • height: Int
  • # The width of the image in pixels.
  • width: Int
  • }