Skip to content
This repository has been archived by the owner on Dec 8, 2021. It is now read-only.

Commit

Permalink
simplify test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Dec 11, 2018
1 parent 20d37ed commit 31649a1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
5 changes: 1 addition & 4 deletions packages/graphqlgen/src/tests/fixtures/input/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,5 @@ input PhoneData {

type Mutation {
addMember(data: AddMemberData!, upsert: Boolean = false): AddMemberPayload!
addMembers(
data: [AddMemberData!]!
upsert: Boolean = false
): AddMemberPayload!
addMembers(data: [AddMemberData!]!): AddMemberPayload!
}
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ export namespace MutationResolvers {
export interface ArgsAddMembers {
data: AddMemberData[];
upsert: boolean;
}
export type AddMemberResolver = (
Expand Down

0 comments on commit 31649a1

Please sign in to comment.