Skip to content

Commit 30df180

Browse files
update schema tests
1 parent 5ed0ac9 commit 30df180

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

packages/graphql/tests/schema/issues/2377.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,8 @@ describe("https://github.com/neo4j/graphql/issues/2377", () => {
224224
\\"\\"\\"Mutations for a list for Property\\"\\"\\"
225225
input PropertyListEnumScalarMutations {
226226
pop: Property
227-
push: [Property!]!
228-
set: [Property!]!
227+
push: [Property!]
228+
set: [Property!]
229229
}
230230
231231
type Query {
@@ -712,8 +712,8 @@ describe("https://github.com/neo4j/graphql/issues/2377", () => {
712712
\\"\\"\\"Mutations for a list for Tag\\"\\"\\"
713713
input TagListEnumScalarMutations {
714714
pop: Tag
715-
push: [Tag!]!
716-
set: [Tag!]!
715+
push: [Tag!]
716+
set: [Tag!]
717717
}
718718
719719
\\"\\"\\"

packages/graphql/tests/schema/scalar.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ describe("Scalar", () => {
7171
\\"\\"\\"Mutations for a list for CustomScalar\\"\\"\\"
7272
input CustomScalarListScalarMutations {
7373
pop: CustomScalar
74-
push: [CustomScalar!]!
75-
set: [CustomScalar!]!
74+
push: [CustomScalar!]
75+
set: [CustomScalar!]
7676
}
7777
7878
\\"\\"\\"CustomScalar filters\\"\\"\\"

0 commit comments

Comments
 (0)