mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-15 02:26:03 +08:00
18 lines
327 B
GraphQL
18 lines
327 B
GraphQL
# import '../fragments/card_fragment.graphql'
|
|
|
|
query DueCardsOfDeck($id: ID!, $first: Int!, $after: String) {
|
|
deck(id: $id) {
|
|
id
|
|
dueCardConnection(first: $first, after: $after) {
|
|
totalCount
|
|
nodes {
|
|
...CardFragment
|
|
}
|
|
pageInfo {
|
|
endCursor
|
|
hasNextPage
|
|
}
|
|
}
|
|
}
|
|
}
|