12 lines
188 B
GraphQL
12 lines
188 B
GraphQL
![]() |
fragment OrderFullyPaidSubscriptionPayload on OrderFullyPaid {
|
||
|
order {
|
||
|
...OrderBase
|
||
|
}
|
||
|
}
|
||
|
|
||
|
subscription OrderFullyPaid {
|
||
|
event {
|
||
|
...OrderFullyPaidSubscriptionPayload
|
||
|
}
|
||
|
}
|