Could anyone please provide me the documentation link of “Recurring Charges GraphQL API”
I have found the documentation for the REST API for it which is here. RecurringApplicationCharge - REST
But I cannot find the same for the GraphQL. I want to check the user’s recurring charges information using graphql.
Does Shopify yet not created the same API for the GRAPHQL or am I missing something?
{
currentAppInstallation {
activeSubscriptions {
name
status
test
trialDays
returnUrl
createdAt
id
}
allSubscriptions (first: 10) {
nodes {
status
}
}
}
}