20 lines
324 B
GraphQL
20 lines
324 B
GraphQL
mutation CreateReadingList($input: CreateReadingListInput!) {
|
|
createReadingList(input: $input) {
|
|
readingListPayload {
|
|
success
|
|
readingList {
|
|
id
|
|
name
|
|
description
|
|
itemCount
|
|
createdTime
|
|
}
|
|
}
|
|
errors {
|
|
... on Error {
|
|
message
|
|
}
|
|
}
|
|
}
|
|
}
|