Recurring Charges API For GraphQL

I also faced some challenges locating the correct method. In the end, I used GraphQL autocomplete to access the subscription data for my app.

{
	currentAppInstallation {
		activeSubscriptions {
			name
			status
			test
			trialDays
			returnUrl
			createdAt
			id
		}
		allSubscriptions (first: 10) {
			nodes {
				status
			}
		}
	}
}

I hope this information is helpful.