Skip to content

Commit

Permalink
Merge pull request #230 from w3bdesign/development
Browse files Browse the repository at this point in the history
Remove apollo-boost and graphql-tag
  • Loading branch information
w3bdesign authored Jul 23, 2020
2 parents ec6b764 + 99c6863 commit 2930f4a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 143 deletions.
139 changes: 1 addition & 138 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nextjs-woocommerce",
"version": "0.9.9",
"description": "",
"version": "0.9.91",
"description": "Nextjs WooCommerce webshop",
"main": "index.js",
"scripts": {
"dev": "next",
Expand All @@ -15,7 +15,6 @@
"@apollo/client": "^3.0.2",
"@types/react": "^16.9.43",
"algoliasearch": "^4.3.1",
"apollo-boost": "^0.4.9",
"graphql": "^15.3.0",
"next": "^9.4.4",
"nprogress": "^0.2.0",
Expand Down
2 changes: 1 addition & 1 deletion utils/const/GQL_MUTATIONS.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import gql from 'graphql-tag';
import gql from '@apollo/client';

export const ADD_TO_CART = gql`
mutation($input: AddToCartInput!) {
Expand Down
2 changes: 1 addition & 1 deletion utils/const/GQL_QUERIES.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import gql from 'graphql-tag';
import gql from '@apollo/client';

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

0 comments on commit 2930f4a

Please sign in to comment.