mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-14 18:00:20 +08:00
42 lines
534 B
GraphQL
42 lines
534 B
GraphQL
# import './deck_invite_fragment.graphql'
|
|
|
|
fragment DeckFragment on Deck {
|
|
id
|
|
name
|
|
description
|
|
frontLanguage
|
|
backLanguage
|
|
createMirrorCard
|
|
createdAt
|
|
updatedAt
|
|
coverImage {
|
|
unsplashId
|
|
authorName
|
|
authorUrl
|
|
smallUrl
|
|
regularUrl
|
|
fullUrl
|
|
}
|
|
cardConnection {
|
|
totalCount
|
|
}
|
|
dueCardConnection {
|
|
totalCount
|
|
}
|
|
viewerDeckMember {
|
|
role {
|
|
id
|
|
}
|
|
isActive
|
|
}
|
|
deckMemberConnection {
|
|
totalCount
|
|
}
|
|
deckInvites {
|
|
...DeckInviteFragment
|
|
}
|
|
offer {
|
|
id
|
|
}
|
|
}
|