INPUT_OBJECT

UpdateFolder

Information required to update a folder. Currently, the folder can be renamed. No other changes are supported.

link GraphQL Schema definition

1input UpdateFolder {
4
2# ID of the folder to update
3id: ID!
7
5# New name for the folder.
6name: String!
12
8# The tags associated with the folder. Current tags will be replaced with passed
9# in entityTags
10# If this is not specified, tags are not modified.
11entityTags: [EntityTagInput]
13}