OrderBookmarkFolders
Changes the order of the bookmark folders. The results of this mutation can be affected by providing an authToken header to set a user for the operation.
OrderBookmarkFolders(
ids: [ID!]
): [String!]
Directives
authAccess
This requires the current user to be in
STUDENT
role.
Arguments
OrderBookmarkFolders.ids
● [ID!]
list scalar
Type
String
scalar
The
String
scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
Examples
Query:
OrderBookmarkFolders($ids: [ID!]) {
OrderBookmarkFolders(ids: $ids)
}
Variables:
{
"ids": [
"58ccb96c-8e90-4464-86e0-f284442981df"
]
}
Response:
{
"data": {
"OrderBookmarkFolders": [
"abc123"
]
}
}