INPUT_OBJECT
CreateFolder
Information required to create a new folder.
After creation, a folder can be renamed with the updateFolder
mutation,
but no other changes are supported.
link GraphQL Schema definition
1 input CreateFolder { 4 2 # The folder name 3 String! : 7 5 # The folder description 6 String! : 10 8 # ID of the parent folder underneath which the new folder will be placed. 9 ID! : 13 11 # Root folder type to apply to the new folder 12 RootFolderType : 17 14 # Order index determining in what order the new folder will be displayed 15 # relative to other folders at the same level. 16 Int : 20 18 # Require for API Token and JWT Token 19 ID : 23 21 # The tags associated with the folder 22 EntityTagInput] : [ 24 }