Files
FictionArchive/fictionarchive-web-astro/src/lib/graphql/queries/readingListsWithItems.graphql
gamer147 48ee43c4f6
All checks were successful
CI / build-backend (pull_request) Successful in 1m32s
CI / build-frontend (pull_request) Successful in 42s
[FA-24] Reading lists
2026-01-19 22:06:34 -05:00

15 lines
178 B
GraphQL

query GetReadingListsWithItems {
readingLists {
id
name
description
itemCount
createdTime
items {
novelId
order
addedTime
}
}
}