Invalid GraphQL

Hello, i try to send a POST request with GraphQL / json content which works and returns 200 the server response with an Error.
The headers are 100% correct.

Payload: [{“operationName”:“GetMe”,“variables”:{“numUniquePurchasedItems”:10,“customInput”:{“shouldUniqueByModifiers”:false}},“query”:“query GetMe($numUniquePurchasedItems: Int, $customInput: MeInput) {\n me(numUniquePurchasedItems: $numUniquePurchasedItems, customInput: $customInput) {\n thLegacyCognitoId\n cognitoId\n details {\n …DetailsFragment\n __typename\n }\n loyaltyId\n uniquePurchasedItems {\n name\n image\n isExtra\n isDonation\n lineId\n sanityId\n quantity\n type\n price\n url\n pickerSelections\n isInMenu\n vendorConfigs {\n …VendorConfigsFragment\n __typename\n }\n children {\n …CartEntryFragment\n isInMenu\n children {\n …CartEntryFragment\n isInMenu\n children {\n …CartEntryFragment\n isInMenu\n children {\n …CartEntryFragment\n isInMenu\n children {\n …CartEntryFragment\n isInMenu\n children {\n …CartEntryFragment\n isInMenu\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n}\n\nfragment DetailsFragment on UserDetails {\n name\n dob\n dobDeleted\n phoneNumber\n phoneVerified\n email\n emailVerified\n promotionalEmails\n isoCountryCode\n zipcode\n defaultAccountIdentifier\n defaultFdAccountId\n defaultPaymentAccountId\n defaultReloadAmt\n autoReloadEnabled\n autoReloadThreshold\n deliveryAddresses {\n addressLine1\n addressLine2\n city\n alias\n country\n latitude\n longitude\n phoneNumber\n route\n state\n streetNumber\n zip\n __typename\n }\n communicationPreferences {\n id\n value\n __typename\n }\n favoriteStores {\n storeId\n storeNumber\n __typename\n }\n favoriteOffers {\n id\n __typename\n }\n loyaltyTier\n requiredAcceptanceAgreementInfo {\n id\n updatedAt\n __typename\n }\n __typename\n}\n\nfragment VendorConfigsFragment on VendorConfigs {\n ncr {\n …VendorConfigFragment\n __typename\n }\n ncrDelivery {\n …VendorConfigFragment\n __typename\n }\n partner {\n …VendorConfigFragment\n __typename\n }\n partnerDelivery {\n …VendorConfigFragment\n __typename\n }\n productNumber {\n …VendorConfigFragment\n __typename\n }\n productNumberDelivery {\n …VendorConfigFragment\n __typename\n }\n sicom {\n …VendorConfigFragment\n __typename\n }\n sicomDelivery {\n …VendorConfigFragment\n __typename\n }\n qdi {\n …VendorConfigFragment\n __typename\n }\n qdiDelivery {\n …VendorConfigFragment\n __typename\n }\n rpos {\n …VendorConfigFragment\n __typename\n }\n rposDelivery {\n …VendorConfigFragment\n __typename\n }\n simplyDelivery {\n …VendorConfigFragment\n __typename\n }\n simplyDeliveryDelivery {\n …VendorConfigFragment\n __typename\n }\n toshibaLoyalty {\n …VendorConfigFragment\n __typename\n }\n __typename\n}\n\nfragment VendorConfigFragment on VendorConfig {\n pluType\n parentSanityId\n pullUpLevels\n constantPlu\n quantityBasedPlu {\n quantity\n plu\n qualifier\n __typename\n }\n multiConstantPlus {\n quantity\n plu\n qualifier\n __typename\n }\n parentChildPlu {\n plu\n childPlu\n __typename\n }\n sizeBasedPlu {\n comboPlu\n comboSize\n __typename\n }\n __typename\n}\n\nfragment CartEntryFragment on CartEntries {\n _id: lineId\n lineId\n image\n isDonation\n isExtra\n name\n pickerSelections\n price\n quantity\n sanityId\n type\n url\n redeemable\n vendorConfigs {\n …VendorConfigsFragment\n __typename\n }\n __typename\n}”}]

Response:

[{“errors”:[{“message”:“Unknown type "MeInput". Did you mean "PluInput"?”,“locations”:[{“line”:1,“column”:58}],“extensions”:{“code”:“GRAPHQL_VALIDATION_FAILED”}},{“message”:“Cannot query field "me" on type "Query".”,“locations”:[{“line”:1,“column”:70}],“extensions”:{“code”:“GRAPHQL_VALIDATION_FAILED”}},{“message”:“Cannot query field "dobDeleted" on type "UserDetails".”,“locations”:[{“line”:1,“column”:1270}],“extensions”:{“code”:“GRAPHQL_VALIDATION_FAILED”}},{“message”:“Cannot query field "phoneVerified" on type "UserDetails". Did you mean "emailVerified"?”,“locations”:[{“line”:1,“column”:1295}],“extensions”:{“code”:“GRAPHQL_VALIDATION_FAILED”}},{“message”:“Cannot query field "favoriteOffers" on type "UserDetails". Did you mean "favoriteStores"?”,“locations”:[{“line”:1,“column”:1805}],“extensions”:{“code”:“GRAPHQL_VALIDATION_FAILED”}},{“message”:“Cannot query field "requiredAcceptanceAgreementInfo" on type "UserDetails".”,“locations”:[{“line”:1,“column”:1859}],“extensions”:{“code”:“GRAPHQL_VALIDATION_FAILED”}}]}]

Use this

[{"operationName":"GetMe","variables":{"numUniquePurchasedItems":10,"customInput":{"shouldUniqueByModifiers":false}},"query":"query GetMe($numUniquePurchasedItems: Int, $customInput: MeInput) { me(numUniquePurchasedItems: $numUniquePurchasedItems, customInput: $customInput) { thLegacyCognitoId cognitoId details { …DetailsFragment __typename } loyaltyId uniquePurchasedItems { name image isExtra isDonation lineId sanityId quantity type price url pickerSelections isInMenu vendorConfigs { …VendorConfigsFragment __typename } children { …CartEntryFragment isInMenu children { …CartEntryFragment isInMenu children { …CartEntryFragment isInMenu children { …CartEntryFragment isInMenu children { …CartEntryFragment isInMenu children { …CartEntryFragment isInMenu __typename } __typename } __typename } __typename } __typename } __typename } __typename } __typename }}fragment DetailsFragment on UserDetails { name dob dobDeleted phoneNumber phoneVerified email emailVerified promotionalEmails isoCountryCode zipcode defaultAccountIdentifier defaultFdAccountId defaultPaymentAccountId defaultReloadAmt autoReloadEnabled autoReloadThreshold deliveryAddresses { addressLine1 addressLine2 city alias country latitude longitude phoneNumber route state streetNumber zip __typename } communicationPreferences { id value __typename } favoriteStores { storeId storeNumber __typename } favoriteOffers { id __typename } loyaltyTier requiredAcceptanceAgreementInfo { id updatedAt __typename } __typename}fragment VendorConfigsFragment on VendorConfigs { ncr { …VendorConfigFragment __typename } ncrDelivery { …VendorConfigFragment __typename } partner { …VendorConfigFragment __typename } partnerDelivery { …VendorConfigFragment __typename } productNumber { …VendorConfigFragment __typename } productNumberDelivery { …VendorConfigFragment __typename } sicom { …VendorConfigFragment __typename } sicomDelivery { …VendorConfigFragment __typename } qdi { …VendorConfigFragment __typename } qdiDelivery { …VendorConfigFragment __typename } rpos { …VendorConfigFragment __typename } rposDelivery { …VendorConfigFragment __typename } simplyDelivery { …VendorConfigFragment __typename } simplyDeliveryDelivery { …VendorConfigFragment __typename } toshibaLoyalty { …VendorConfigFragment __typename } __typename}fragment VendorConfigFragment on VendorConfig { pluType parentSanityId pullUpLevels constantPlu quantityBasedPlu { quantity plu qualifier __typename } multiConstantPlus { quantity plu qualifier __typename } parentChildPlu { plu childPlu __typename } sizeBasedPlu { comboPlu comboSize __typename } __typename}fragment CartEntryFragment on CartEntries { _id: lineId lineId image isDonation isExtra name pickerSelections price quantity sanityId type url redeemable vendorConfigs { …VendorConfigsFragment __typename } __typename}"}]

thx but it also doesnt work.
first i got an error “[{“errors”:[{“message”:“Syntax Error: Unexpected character: U+2026.”,“locations”:[{“line”:1,“column”:190}],“extensions”:{“code”:“GRAPHQL_PARSE_FAILED”}}]}]”

but i fixed it by replacing the “…” from u with “…”.
Still the same error as at the beginning…

Payload: [{“operationName”:“GetMe”,“variables”:{“numUniquePurchasedItems”:10,“customInput”:{“shouldUniqueByModifiers”:false}},“query”:“query GetMe($numUniquePurchasedItems: Int, $customInput: MeInput) { me(numUniquePurchasedItems: $numUniquePurchasedItems, customInput: $customInput) { thLegacyCognitoId cognitoId details { …DetailsFragment __typename } loyaltyId uniquePurchasedItems { name image isExtra isDonation lineId sanityId quantity type price url pickerSelections isInMenu vendorConfigs { …VendorConfigsFragment __typename } children { …CartEntryFragment isInMenu children { …CartEntryFragment isInMenu children { …CartEntryFragment isInMenu children { …CartEntryFragment isInMenu children { …CartEntryFragment isInMenu children { …CartEntryFragment isInMenu __typename } __typename } __typename } __typename } __typename } __typename } __typename } __typename }}fragment DetailsFragment on UserDetails { name dob dobDeleted phoneNumber phoneVerified email emailVerified promotionalEmails isoCountryCode zipcode defaultAccountIdentifier defaultFdAccountId defaultPaymentAccountId defaultReloadAmt autoReloadEnabled autoReloadThreshold deliveryAddresses { addressLine1 addressLine2 city alias country latitude longitude phoneNumber route state streetNumber zip __typename } communicationPreferences { id value __typename } favoriteStores { storeId storeNumber __typename } favoriteOffers { id __typename } loyaltyTier requiredAcceptanceAgreementInfo { id updatedAt __typename } __typename}fragment VendorConfigsFragment on VendorConfigs { ncr { …VendorConfigFragment __typename } ncrDelivery { …VendorConfigFragment __typename } partner { …VendorConfigFragment __typename } partnerDelivery { …VendorConfigFragment __typename } productNumber { …VendorConfigFragment __typename } productNumberDelivery { …VendorConfigFragment __typename } sicom { …VendorConfigFragment __typename } sicomDelivery { …VendorConfigFragment __typename } qdi { …VendorConfigFragment __typename } qdiDelivery { …VendorConfigFragment __typename } rpos { …VendorConfigFragment __typename } rposDelivery { …VendorConfigFragment __typename } simplyDelivery { …VendorConfigFragment __typename } simplyDeliveryDelivery { …VendorConfigFragment __typename } toshibaLoyalty { …VendorConfigFragment __typename } __typename}fragment VendorConfigFragment on VendorConfig { pluType parentSanityId pullUpLevels constantPlu quantityBasedPlu { quantity plu qualifier __typename } multiConstantPlus { quantity plu qualifier __typename } parentChildPlu { plu childPlu __typename } sizeBasedPlu { comboPlu comboSize __typename } __typename}fragment CartEntryFragment on CartEntries { _id: lineId lineId image isDonation isExtra name pickerSelections price quantity sanityId type url redeemable vendorConfigs { …VendorConfigsFragment __typename } __typename}”}]

Contact me on tg @Mrx001_3