OrderBookmarkFolders
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": [
"0e99a117-e3b6-40a6-867c-6b3bbc166b41"
]
}
Response:
{
"data": {
"OrderBookmarkFolders": [
"abc123"
]
}
}