Skip to content

Commit

Permalink
chore: upgrade graphql to v16.8.1 and @graphql-tools/* to v9-10 (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
vtereshyn authored Nov 30, 2023
1 parent d446ffe commit 9e18f19
Show file tree
Hide file tree
Showing 13 changed files with 240 additions and 301 deletions.
6 changes: 6 additions & 0 deletions .changeset/thirty-kiwis-reply.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@graphql-authz/core': patch
'@graphql-authz/directive': patch
---

Upgrade graphql to v16.8.1 and @graphql-tools to v9._._/v10._._
2 changes: 1 addition & 1 deletion examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"access": "restricted"
},
"resolutions": {
"graphql": "16.0.1"
"graphql": "16.8.1"
},
"dependencies": {},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { gql } from 'graphql-tag';
import gql from 'graphql-tag';
import { ApolloServer } from '@apollo/server';
import { startStandaloneServer } from '@apollo/server/standalone';
import { buildSubgraphSchema } from '@apollo/subgraph';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { gql } from 'graphql-tag';
import gql from 'graphql-tag';
import { ApolloServer } from '@apollo/server';
import { startStandaloneServer } from '@apollo/server/standalone';
import { buildSubgraphSchema } from '@apollo/subgraph';
Expand Down
2 changes: 1 addition & 1 deletion examples/packages/apollo-server-schema-first/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { gql } from 'graphql-tag';
import gql from 'graphql-tag';
import { ApolloServer } from '@apollo/server';
import { startStandaloneServer } from '@apollo/server/standalone';
import { preExecRule, postExecRule } from '@graphql-authz/core';
Expand Down
4 changes: 2 additions & 2 deletions examples/packages/schema-stitching/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
},
"dependencies": {
"@apollo/server": "4.7.5",
"@graphql-tools/stitch": "7.5.3",
"@graphql-tools/stitching-directives": "1.3.3",
"@graphql-tools/stitch": "9.0.3",
"@graphql-tools/stitching-directives": "3.0.0",
"cross-fetch": "3.1.5",
"wait-on": "6.0.0"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { gql } from 'graphql-tag';
import gql from 'graphql-tag';
import { ApolloServer } from '@apollo/server';
import { startStandaloneServer } from '@apollo/server/standalone';
import { stitchingDirectives } from '@graphql-tools/stitching-directives';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { gql } from 'graphql-tag';
import gql from 'graphql-tag';
import { ApolloServer } from '@apollo/server';
import { startStandaloneServer } from '@apollo/server/standalone';
import { stitchingDirectives } from '@graphql-tools/stitching-directives';
Expand Down
Loading

0 comments on commit 9e18f19

Please sign in to comment.