Skip to content

Commit 99c6863

Browse files
committed
Remove apollo-boost and graphql-tag
1 parent 025f877 commit 99c6863

File tree

4 files changed

+5
-143
lines changed

4 files changed

+5
-143
lines changed

package-lock.json

Lines changed: 1 addition & 138 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nextjs-woocommerce",
3-
"version": "0.9.9",
4-
"description": "",
3+
"version": "0.9.91",
4+
"description": "Nextjs WooCommerce webshop",
55
"main": "index.js",
66
"scripts": {
77
"dev": "next",
@@ -15,7 +15,6 @@
1515
"@apollo/client": "^3.0.2",
1616
"@types/react": "^16.9.43",
1717
"algoliasearch": "^4.3.1",
18-
"apollo-boost": "^0.4.9",
1918
"graphql": "^15.3.0",
2019
"next": "^9.4.4",
2120
"nprogress": "^0.2.0",

utils/const/GQL_MUTATIONS.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import gql from 'graphql-tag';
1+
import gql from '@apollo/client';
22

33
export const ADD_TO_CART = gql`
44
mutation($input: AddToCartInput!) {

utils/const/GQL_QUERIES.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import gql from 'graphql-tag';
1+
import gql from '@apollo/client';
22

33
export const GET_SINGLE_PRODUCT = gql`
44
query Product($id: ID!) {

0 commit comments

Comments
 (0)