OBJECT

ContextualFileInfo

Describes a file in a contextual filesystem.

  • type ContextualFileInfo implements FileInfo {
  • # The extension of the file.
  • extension: String!
  • # The name of the file.
  • name: String!
  • # The path of the file on the realized operating system.
  • osPath: OSFilePath!
  • # The last modified time of the file, in UTC.
  • lastModifiedTime: DateTime!
  • # The creation time of the file, in UTC.
  • createdTime: DateTime!
  • # The size of the file, in bytes.
  • size: Int!
  • # The contextual path to this file.
  • path: FilePath!
  • # The manifest GUID of this file.
  • fileId: UUID!
  • }