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}