Have your say in Community Polls: What was/is your greatest motivation to start your own business?
Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

Internal Server Error for DiscountCustomerSavedSearches

Internal Server Error for DiscountCustomerSavedSearches

davidjweber
Visitor
1 0 0

I am getting an internal server error when using Shopify's graphql admin api to get information on a discount code.  Here is my query:

{
  codeDiscountNodeByCode(code: "TEST") {
    id
    codeDiscount {
      __typename
      ... on DiscountCodeBasic {
        customerSelection {
          ... on DiscountCustomerSavedSearches {
            savedSearches {
              id
            }
          }
        }
      }
    }
  }
}

 
And here is the response:

{
  "errors": [
    {
      "message": "Internal error. Looks like something went wrong on our end.\nRequest ID: b327cdec-7913-4ed2-acc1-4e5194c6fb72 (include this in support requests).",
      "extensions": {
        "code": "INTERNAL_SERVER_ERROR",
        "requestId": "b327cdec-7913-4ed2-acc1-4e5194c6fb72"
      }
    }
  ]
}
Replies 0 (0)