OBJECT

SupportingResourceVersion

A version of a supporting resource

link GraphQL Schema definition

  • type SupportingResourceVersion {
  • # field :name, String, null: true, description: "Name of the version"
  • #
  • # The label describing the file version e.g. jpg_rgb_250h
  • code: String!
  • # The format e.g. .png or .jpg
  • fileFormat: String
  • # The file size of the file, in bytes
  • fileSize: Int
  • # The height of the file, in pixels
  • height: Int
  • # An MD5 hash of the file, for comparison purposes
  • md5Hash: String
  • # The file name
  • name: String
  • # A SHA-256 hash of the file, for comparison purposes
  • sha256Hash: String
  • # The public URL of the supporting resource version
  • url: String
  • # The width of the file, in pixels
  • width: Int
  • }