A video clip

GraphQL Schema definition

  • type Clip implements Asset {
  • 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
  • # Link to an image from the clip to display.
  • # This link is only valid until `validUntil` time.
  • thumbnailUrl: String
  • label: String
  • # The native height of the clip in pixels, may not be available for all clips.
  • height: Int
  • # The native width of the clip in pixels, may not be available for all clips.
  • width: Int
  • }