No content to show
User Activity
09-21-2021
Yes, with createCart-mutation like:mutation createCart($cartInput: CartInput) {
cartCreate(input: $cartInput) {
cart {
id
createdAt
updatedAt
lines(first:10) {
edges {
node {
id
...
09-20-2021
Hi,We create cart with Storefront APIs cartCreate mutation and attach customer to cart with cartBuyerIdentityUpdate mutation. I know I can query cart with cart id, but can i query cart with customer access token or customer email address?