Hello!
I’m creating a custom Shopify app to manage Subscription Contracts. Right now I’m working on the migration from the old app the company was using to mine, but when when querying the Subscription Contracts with GraphQL I’m not getting the ones belonging to the old app.
My plan is to keep using the existing Subscription Contracts.
I understand that the Subscription Contracts are store in Shopify, and belongs to my store, no the app, right? So why I’m not getting the old subscription contracts in GraphQL?
This is query I’m using:
query GetSubscriptionContracts {
subscriptionContracts(first: 50){
edges {
node {
id
status
createdAt
customer {
id
}
nextBillingDate
}
}
}
}
Thank you in advance for your help!