mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-15 02:26:03 +08:00
12 lines
203 B
GraphQL
12 lines
203 B
GraphQL
# import '../fragments/deck_fragment.graphql'
|
|
# import '../fragments/offer_fragment.graphql'
|
|
|
|
query Offer($id: ID!) {
|
|
offer(id: $id) {
|
|
...OfferFragment
|
|
deck {
|
|
...DeckFragment
|
|
}
|
|
}
|
|
}
|