GraphQL Query to Fetch Customer Cart ID

This snippet demonstrates a GraphQL query named 'CustomerCart' that retrieves the ID of the customer's cart. It’s useful for applications that manage shopping carts.
 avatar
unknown
graphqlschema
a month ago
42 B
2
Indexable
query CustomerCart {
customerCart {
id
}
}
Leave a Comment