Skip to content

Instantly share code, notes, and snippets.

@colinloretz
Last active March 25, 2021 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colinloretz/b5c0ed3b1facd8f1f762eb2e17babb36 to your computer and use it in GitHub Desktop.
Save colinloretz/b5c0ed3b1facd8f1f762eb2e17babb36 to your computer and use it in GitHub Desktop.
Shopify Get Customer by id with payment methods
query {
customer(id: "gid://shopify/Customer/XXXXXXXXXX") {
email
firstName
lastName
paymentMethods(first: 5) {
edges {
cursor
node {
id
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment