OBJECT

File

The File type

link GraphQL Schema definition

  • type File implements Node, Timestamped, Blob {
  • # When paired with the Node interface, this is an automatically managed
  • #
  • # timestamp that is set whenever an object is mutated.
  • modifiedAt: DateTime!
  • # The mimeType of the blob asset.
  • blobMimeType: String
  • # When paired with the Node interface, this is an automatically managed
  • #
  • # timestamp that is set when an object is first created.
  • createdAt: DateTime!
  • # The name of the File. If no name is given, the uploaded file's name will be
  • # used.
  • name: String
  • # A pre-signed url to your file.
  • blobUrl: String
  • # A globally unique ID.
  • id: ID!
  • }