OBJECT

FilesystemFile

link GraphQL Schema definition

1type FilesystemFile {
2
3# Whether it is a folder or not.
4isFolder: Boolean
5
6# The file contents.
7source: String!
8
9# The file/folder path.
10path: String!
11
12# Whether the file is read-only (cannot be edited by the candidate).
13isReadOnly: Boolean
14
15# Whether the file is hidden (not shown in the file tree).
16isHidden: Boolean
17
18}