OBJECT

Asset

link GraphQL Schema definition

  • type Asset implements Node {
  • id: ID!
  • name: String
  • # The storage key of the image.
  • storageKey: String
  • # The url used to retrieve the asset.
  • url: String
  • metadata: Map
  • type: AssetType!
  • # The content type of the asset.
  • contentType: String
  • # Whether the asset has been finished uploading.
  • completed: Boolean!
  • posts: [Post!]
  • }