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

1input CreateFolder {
4
2# The folder name
3name: String!
7
5# The folder description
6description: String!
10
8# ID of the parent folder underneath which the new folder will be placed.
9parentId: ID!
13
11# Root folder type to apply to the new folder
12rootFolderType: RootFolderType
17
14# Order index determining in what order the new folder will be displayed
15# relative to other folders at the same level.
16orderIndex: Int
20
18# Require for API Token and JWT Token
19userId: ID
21}