OBJECT

File

A file object represents a file stored in the system.

link GraphQL Schema definition

1type File {
2
3# Name of the file.
4name: String
5
6# File extension.
7extension: String
8
9# Size of the file in bytes.
10size: Int
11
12# Date and time when the file was created.
13createdAt: DateTime
14
15# URL for the document preview, if available.
16documentPreviewUrl: String
17
18}