Missing field percentage in sellingPlanGroup query

Hi there,

can someone give me advice on what I am doing wrong?

I am trying to query a specific selling plan group it works perfectly, till I add these fragments for retrieving the pricing policies

pricingPolicies {
              ... on SellingPlanFixedPricingPolicy {
                adjustmentType
                adjustmentValue {
                  __typename 
                  ...on SellingPlanPricingPolicyPercentageValue {
                    percentage
                  }
                  ...on MoneyV2 {
                    amount
                  }
                }
              }

This is the error I receive, :slightly_smiling_face:

Missing field percentage in {
  "__typename": "MoneyV2",
  "amount": "15.0"
}

I forgot to mention that I only have one item pricingPolicie with of type MoneyV2 (fixed Price in this case)

So why does error even occurs? I thought that fragments work this way if its from type MoneyV2 select these properties (amount) and if it’s from type SellingPlanPricingPolicyPercentageValue then select percentage property?