Skip to content

Commit

Permalink
Add missing test fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor-scheer committed Jun 8, 2022
1 parent 2bfa2ea commit 3c9f806
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
type Query {
hello: String!
serverSideField: ServerField!
someEnum: SomeEnum!
}

type ServerField {
serverData: String!
}

type RemovedField {
id: ID!
name: RemovedType
}

type RemovedType {
fieldName: String
}

enum SomeEnum {
foo
bar
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const {
clientSideOnlySchema,
clientSideOnlyQuery,
} = resolveFiles({
graphQLSchema: "../../service/__tests__/fixtures/schema.graphql",
graphQLSchema: "./fixtures/schema.graphql",
simpleQuery: "./fixtures/simpleQuery.graphql",
otherQuery: "./fixtures/otherQuery.graphql",
queryWithFragments: "./fixtures/queryWithFragments.graphql",
Expand Down

0 comments on commit 3c9f806

Please sign in to comment.