mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-15 02:26:03 +08:00
26 lines
373 B
GraphQL
26 lines
373 B
GraphQL
query DeckInvite($deckInviteId: String!) {
|
|
deckInvite(deckInviteId: $deckInviteId) {
|
|
id
|
|
link
|
|
inviteeRole {
|
|
id
|
|
}
|
|
deck {
|
|
id
|
|
name
|
|
creator {
|
|
firstName
|
|
lastName
|
|
}
|
|
coverImage {
|
|
unsplashId
|
|
authorName
|
|
authorUrl
|
|
smallUrl
|
|
regularUrl
|
|
fullUrl
|
|
}
|
|
}
|
|
}
|
|
}
|