11 lines
169 B
GraphQL
11 lines
169 B
GraphQL
subscription ProductCreated {
|
|
event {
|
|
__typename
|
|
... on ProductCreated {
|
|
__typename
|
|
product {
|
|
...ProductWebhookPayload
|
|
}
|
|
}
|
|
}
|
|
}
|