Files
TubeCards/lib/graphql/queries/deck_invite.graphql
friebetill 2d56da5a29 Add custom scheme support
Now Space on Android, iOS, macOS can handle URLs that start with
space://.
2022-07-04 23:03:27 +02:00

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
}
}
}
}