12 lines
169 B
GraphQL
12 lines
169 B
GraphQL
![]() |
subscription ProductCreated {
|
||
|
event {
|
||
|
__typename
|
||
|
... on ProductCreated {
|
||
|
__typename
|
||
|
product {
|
||
|
...ProductWebhookPayload
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|