All files / src/contexts/cartContext queries.tsx

100% Statements 18/18
100% Branches 0/0
100% Functions 0/0
100% Lines 18/18

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311    5x                                                                                                       5x                           5x                           5x                 5x           5x               5x                                     5x                                         5x                               5x                                       5x                                     5x                         5x                                         5x                                     5x                       5x                           5x                         5x                                    
import { gql } from '@apollo/client';
 
const cartData = gql`
  fragment CartData on Cart {
    items {
      id
      product {
        sku
        name
        price {
          regularPrice {
            amount {
              value
            }
          }
        }
      }
      quantity
    }
    prices {
      grand_total {
        value
      }
    }
    billing_address {
      firstname
      lastname
      company
      street
      city
      region{
        code
        label
      }
      postcode
      telephone
      country {
        code
        label
      }
    }
    available_payment_methods {
      code
      title
    }
    selected_payment_method {
      code
    }
    applied_coupons {
      code
    }
  }
`;
 
export const GET_COUNTRIES = gql`
  query GetCountries {
    countries {
      id
      full_name_locale
      available_regions {
        id
        code
        name
      }
    }
  }
`;
 
export const GET_COUNTRY = gql`
  query GetCountry($id: String!) {
    country(id: $id) {
      id
      full_name_locale
      available_regions {
        id
        code
        name
      }
    }
  }
`;
 
export const GET_CART = gql`
  query GetCart($cartId: String!){
    cart(cart_id: $cartId) {
      ...CartData
    }
  }
  ${cartData}
`
 
export const CREATE_CART = gql`
  mutation CreateCart {
    createEmptyCart
  }
`;
 
export const GET_CUSTOMER_CART = gql`
  query GetCustomerCart {
    customerCart {
      id
    }
  }
`;
 
export const ADD_PRODUCT = gql`
  mutation AddProduct($cartId: String!, $sku: String!, $quantity: Float!) {
    addProductsToCart(
      cartId: $cartId
      cartItems: [
        {
          quantity: $quantity
          sku: $sku
        }
      ]  
    ) {
      cart {
        ...CartData
      }
    }
  }
  ${cartData}
`;
 
export const UPDATE_PRODUCT = gql`
  mutation UpdateProduct($cartId: String!, $positionId: Int!, $quantity: Float!) {
    updateCartItems(
      input: {
        cart_id: $cartId,
        cart_items: [
          {
            cart_item_id: $positionId
            quantity: $quantity
          }
        ]
      } 
    ) {
      cart {
        ...CartData
      }
    }
  }
  ${cartData}
`;
 
export const REMOVE_PRODUCT = gql`
  mutation RemoveProduct($cartId: String!, $positionId: Int!) {
    removeItemFromCart(
      input: {
        cart_id: $cartId,
        cart_item_id: $positionId
      } 
    ) {
      cart {
        ...CartData
      }
    }
  }
  ${cartData}
`;
 
export const GET_STRAPI_PRODUCTS = gql`
  query GetStrapiProducts($ids: [String]!){
    products(where: { sku_in: $ids }) {
      productType
      name
      name_nl
      sku
      slug
      location {
        name 
      }
      thumbnail {
        name
        formats
      }
      short_description
    }
  }
`;
 
export const GET_STRAPI_PRODUCT = gql`
  query GetStrapiProduct($sku: String!) {
    products(where: {sku: $sku}) {
      name
      name_nl
      sku
      slug
      location {
        name 
      }
      thumbnail {
        name
        formats
      }
      short_description
    }
  }
`
 
export const MERGE_CARTS = gql`
  mutation MergeCarts($fromCartId: String!, $toCartId: String!) {
    mergeCarts(
      source_cart_id: $fromCartId
      destination_cart_id: $toCartId
    ) {
      id
      ...CartData
    }
  }
  ${cartData}
`;
 
export const SET_BILLING_ADDRESS = gql`
  mutation SetBillingAddress(
    $cartId: String!, 
    $address: CartAddressInput!
  ) {
      setBillingAddressOnCart(
        input: {
          cart_id: $cartId
          billing_address: {
            address: $address
          }
        }
      ) {
          cart {
            ...CartData
          }
        }
    }
  ${cartData}
`;
 
export const SET_PAYMENT_METHOD = gql`
  mutation SetPaymentMethod(
    $cartId: String!,
    $paymentCode: String!
  ) {
    setPaymentMethodOnCart( input: {
      cart_id: $cartId,
      payment_method: {
        code: $paymentCode
      }
    }) {
      cart {
        ...CartData
      }
    }
  }
  ${cartData}
`;
 
export const PLACE_ORDER = gql`
  mutation PlaceOrder($cartId: String!) {
    placeOrder(input: {
      cart_id: $cartId
    }) {
      order {
        order_number
      }
    }
  }
`;
 
export const APPLY_COUPON = gql`
  mutation ApplyCoupon($cartId: String!, $couponCode: String!) {
    applyCouponToCart(input: {
      cart_id: $cartId,
      coupon_code: $couponCode
    }) {
      cart {
        ...CartData
      }
    }
  }
  ${cartData}
`
 
export const REMOVE_COUPON = gql`
  mutation RemoveCoupon($cartId: String!) {
    removeCouponFromCart(input: {
      cart_id: $cartId
    }) {
      cart {
        ...CartData
      }
    }
  }
  ${cartData}
`
 
export const GET_UPSELL_PRODUCTS = gql`
  query UpsellProducts($sku: String!) {
    products(filter: {sku: {eq: $sku}}) {
      items {
        upsell_products {
          sku
          price {
            regularPrice {
              amount {
                value
              }
            }
          }
        }
      }
    }
  }
`;