Media

Any media (image, video, etc.) associated with a Parcel object.

type Media {
  id: Int!
  url: String!
  media_type_id: Int!
  tn_url: String
  order_num: Int
}

Fields

Media.id Int!

A unique indentifier.

Media.media_type_id Int!

The type identifier of the media. Possible values:

{
  1: image
  2: video
  3: object /* a 3D model */
  4: iframe
}

Media.order_num Int

A number representing the order the media should appear in, if necessary (consecutive integers starting with 1).

Media.tn_url String

The location of the thumbnail associated with the media if it exists.

Media.url String!

The url where the media is located.