Skip to content

Instantly share code, notes, and snippets.

@daniel-sim
Last active May 25, 2023 12:22
Show Gist options
  • Save daniel-sim/2dc5911ece796862027dad80e0e24089 to your computer and use it in GitHub Desktop.
Save daniel-sim/2dc5911ece796862027dad80e0e24089 to your computer and use it in GitHub Desktop.
query ($cursor: String) {
transactions(types: [APP_SUBSCRIPTION_SALE], after: $cursor, first: 100) {
edges {
cursor
node {
id
createdAt
... on AppSubscriptionSale {
netAmount {
amount
}
app {
name
}
shop {
myshopifyDomain
}
}
... on AppOneTimeSale {
netAmount {
amount
}
app {
name
}
shop {
myshopifyDomain
}
}
}
}
pageInfo {
hasNextPage
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment