I create a sellingPlan and apply to my product .Now I want to get sellingPlan info by graph QL,the query like this,if i want get the planType as in the plan like ‘PAY_AS_YOU_GO’,’ADVANCED_PREPAID’,’PREPAID’,how to do ?
Query example:
{
“query”: “query { sellingPlanGroups(first: 50,query:\“app_id:ALL\”) { edges { node { id name options summary sellingPlans(first: 10){ edges{node{description id name options billingPolicy{__typename } pricingPolicies {__typename}}}} } } pageInfo { hasNextPage } } }”
}