File
Represents a file entity that provides basic metadata such as file size and extension. This type is typically used to describe uploaded or stored files in the system.
type File {
extension: String
size: Float!
}
Fields
File.extension
● String
scalar
The file extension (e.g., pdf, docx, xlsx).
File.size
● Float!
non-null scalar
The size of the file in bytes.
Member Of
DataRoomDocument
object