INPUT_OBJECT

FilesystemFileInput

link GraphQL Schema definition

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