OBJECT
MediaItem
link GraphQL Schema definition
- type MediaItem implements Node {
- : ID!
- # [Deprecated] The public ID in Cloudinary of the media item.
- : String!
- # The width of the media item in pixels.
- : Int!
- # The height of the media item in pixels.
- : Int!
- # The size of the media item in bytes.
- : Int!
- # The format of the media item. ie jpg, png, gif, etc.
- : String!
- # The type of media item. Will be image or video
- : String!
- # The URL of the media item.
- : String!
- # The original filename of the media item.
- : String!
- : Int!
- # The duration of the media item in seconds.
- : Int
- # The post that the media item belongs to.
- : Post
- }