Queries that contain a connection field within a list field are not currently supported

I get the following error:
“Queries that contain a connection field within a list field are not currently supported.” Same issue I fixed some mentioned fields but same error occurring, please help :))

{
  orders(first: 1) {
    edges {
      node {
        id
        admin_graphql_api_id: id
        name
        agreements(first: 1) {
            edges {
              node {
                app {
                  id
                }
              }
            }
        }
        browser_ip: clientIp
        buyer_accepts_marketing: customerAcceptsMarketing
        cancel_reason: cancelReason
        cancelled_at: cancelledAt
        closed_at: closedAt
        confirmed
        contact_email: email
        created_at: createdAt
        currency: currencyCode

        current_subtotal_price_set:currentSubtotalPriceSet {
          presentmentMoney {
            amount
            currencyCode
          }
          shopMoney {
            amount
            currencyCode
          }
        }

        current_total_discounts_set: currentCartDiscountAmountSet {
          presentmentMoney {
            amount
            currencyCode
          }
          shopMoney {
            amount
            currencyCode
          }
        }

        current_total_duties_set: currentTotalDutiesSet {
          presentmentMoney {
            amount
            currencyCode
          }
          shopMoney {
            amount
            currencyCode
          }
        }

        current_total_price_set: currentTotalPriceSet {
          presentmentMoney {
            amount
            currencyCode
          }
          shopMoney {
            amount
            currencyCode
          }
        }

        current_total_tax_set: currentTotalTaxSet {
          presentmentMoney {
            amount
            currencyCode
          }
          shopMoney {
            amount
            currencyCode
          }
        }

        customer_locale: customerLocale
        discount_codes: discountCode
        email
        financial_status: displayFinancialStatus
        fulfillment_status: displayFulfillmentStatus
        gateway: paymentGatewayNames
        name
        note

        billing_address: billingAddress {
          zip
          city
          name
          phone
          company
          country
          address1
          address2
          latitude
          province
          last_name: lastName
          longitude
          first_name: firstName
          country_code: countryCodeV2
          province_code: provinceCode
        }

        customer {
          id
          note
          tags
          email
          phone
          state
          addresses(first: 2) {
            zip
            city
            name
            phone
            company
            country
            address1
            address2
            latitude
            province
            last_name: lastName
            longitude
            first_name: firstName
            country_code: countryCodeV2
            province_code: provinceCode
          }
          last_name: lastName
          created_at: createdAt
          first_name: firstName
          tax_exepmpt: taxExempt
          updated_at: updatedAt
          total_spent: totalSpent
          orders_count: ordersCount
          lastOrder {
            id
            name
          }
          verified_email: verifiedEmail
          default_address: defaultAddress {
            id
          }
          accepts_marketing: acceptsMarketing
          multipass_identifier: multipassIdentifier
        }
        customer_locale: customerLocale
        discount_applications: discountApplications(first: 1) {
          edges {
            node {
              targetType
              targetSelection
              allocationMethod
            }
          }
        }
        discount_codes: discountCode
        estimated_taxes: estimatedTaxes
        financial_status: displayFinancialStatus
        
        fulfillment_status: displayFulfillmentStatus
        gateway: paymentGatewayNames

        note
        note_attributes: customAttributes{
          key
          value
        }
        original_total_duties_set: originalTotalDutiesSet{
          presentmentMoney{
            amount
            currencyCode
          }
          shopMoney{
            amount
            currencyCode
          }
        }
        phone
        presentment_currency: presentmentCurrencyCode
        processed_at: processedAt
        refunds{
          id
          note
          order{
            id
          }
          created_at: createdAt
          processed_at: updatedAt
          transactions {
            edges {
              node {
                id
              }
            }
          }
        

        }
        billingAddressMatchesShippingAddress
        shipping_address: shippingAddress{
           zip
          city
          name
          phone
          company
          country
          address1
          address2
          latitude
          province
          last_name: lastName
          longitude
          first_name: firstName
          country_code: countryCodeV2
          province_code: provinceCode
        }

        shippingLines(first: 1){
          edges{
            node{
              code
              originalPriceSet{
                presentmentMoney{
                  amount
                  currencyCode
                }
                shopMoney{
                  amount
                  currencyCode
                }
              }
              title
              source
              taxLines{
                rate
              }
            }
          }
        }
        subtotal_price_set: subtotalPriceSet{
          presentmentMoney{
            amount
            currencyCode
          }
          shopMoney{
            amount
            currencyCode
          }
        }
        tags
        tax_lines: taxLines{
        	rate
          title
          priceSet{
            presentmentMoney{
              amount
              currencyCode
            }
            shopMoney{
              amount
              currencyCode
            }
          }
          channelLiable
        }
        taxes_included: taxesIncluded
        test
        total_discounts_set: totalDiscountsSet{
          presentmentMoney{
            amount
            currencyCode
          }
          shopMoney{
            amount
            currencyCode
          }
        }
        total_outstanding_set: totalOutstandingSet{
          presentmentMoney{
            amount
            currencyCode
          }
          shopMoney{
            amount
            currencyCode
          }
        }
        total_price_set: totalPriceSet{
          presentmentMoney{
            amount
            currencyCode
          }
          shopMoney{
            amount
            currencyCode
          }
        }
        total_shipping_price_set: totalShippingPriceSet{
          presentmentMoney{
            amount
            currencyCode
          }
          shopMoney{
            amount
            currencyCode
          }
        }
        total_tax_set: totalTaxSet{
          presentmentMoney{
            amount
            currencyCode
          }
          shopMoney{
            amount
            currencyCode
          }
        }
        total_tip_received: totalTipReceivedSet{
          presentmentMoney{
            amount
            currencyCode
          }
          shopMoney{
            amount
            currencyCode
          }
        }
        total_weight: totalWeight
        updated_at: updatedAt
      }
    }
  }
}

I am using Shopify version 2021-10

All good in GraphQL app but programmatically gives this error