Last active
March 25, 2021 18:50
-
-
Save colinloretz/b5c0ed3b1facd8f1f762eb2e17babb36 to your computer and use it in GitHub Desktop.
Shopify Get Customer by id with payment methods
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query { | |
customer(id: "gid://shopify/Customer/XXXXXXXXXX") { | |
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