New Shopify not working for me anymore

:bullseye: What is your goal?

Trying to use the new shopify module

:thinking: What is the problem & what have you tried?

I am not able to find:
Payment gateway
Shipping lines
Discount codes and discount amount

Hey there,

and where are you trying to find these exactly? If you can give a link to the API endpoints you are trying to reach, we can help build the body of a generic API call module to help you get or update the things you are looking for.

I am trying to use GraphQL API call. I don’t know what I am doing wrong. This is my error:

This is what I input in the Query, given to me by Makes cares team:

What am I doing wrong?

The error indicates that the GraphQL parser was expecting a $ and received “gid”, meaning it expected a variable.

Have you tried writing the query syntax with $variable placeholders and then mapping Make pills to these variable values instead?

Like this example:

order(id: $orderId)

Then map the variable:

  • Key: orderId
  • Value: {{103.id}}

Shopify expects the gid is a string containing a URI. Depending on your source (103), maybe you need something like this:

Value: {{ "gid://shopify/Order/" + 103.ID }}

@damato