PhotoSummary

open_in_new

Basic url access to a photo and the ability to retrieve it at multiple resolutions.

GraphQL Schema definition

  • type PhotoSummary implements CommonAsset, Asset {
  • # 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.
  • resizeUrl(resolution: PhotoResolution!): String
  • model: Model
  • id: ID!
  • status: AssetStatus
  • filename: String
  • format: String!
  • url: String
  • downloadUrl: String
  • # If populated, the url is only valid until the time given
  • validUntil: DateTime
  • }