Skip to content

Instantly share code, notes, and snippets.

@daniel-sim
Last active March 9, 2021 08:25
Show Gist options
  • Save daniel-sim/0f1591aff84d5fa68fb686aca3c67b9f to your computer and use it in GitHub Desktop.
Save daniel-sim/0f1591aff84d5fa68fb686aca3c67b9f to your computer and use it in GitHub Desktop.
query {
transactions(types: [APP_SUBSCRIPTION_SALE]) {
edges {
node {
id
createdAt
... on AppSubscriptionSale {
netAmount {
amount
}
app {
name
}
shop {
myshopifyDomain
}
}
... on ServiceSale {
netAmount {
amount
}
shop {
myshopifyDomain
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment