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