-
Notifications
You must be signed in to change notification settings - Fork 400
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(): fix precommit hook (dont include fixtures)
- Loading branch information
1 parent
51b4463
commit 7d52e9d
Showing
10 changed files
with
30 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tests/generated-definitions/*.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ export enum Resolvers { | |
QUERY = 'Query', | ||
MUTATION = 'Mutation', | ||
SUBSCRIPTION = 'Subscription', | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
|
||
/** ------------------------------------------------------ | ||
* THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY) | ||
* ------------------------------------------------------- | ||
*/ | ||
|
||
/* tslint:disable */ | ||
export interface Foo { | ||
a: string[]; | ||
b?: string[]; | ||
c: string[]; | ||
d?: string[]; | ||
a: string[]; | ||
b?: string[]; | ||
c: string[]; | ||
d?: string[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
|
||
/** ------------------------------------------------------ | ||
* THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY) | ||
* ------------------------------------------------------- | ||
*/ | ||
|
||
/* tslint:disable */ | ||
export enum Foobar { | ||
Foo = 'Foo', | ||
Bar = 'Bar', | ||
Baz = 'Baz', | ||
Foo = "Foo", | ||
Bar = "Bar", | ||
Baz = "Baz" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
|
||
/** ------------------------------------------------------ | ||
* THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY) | ||
* ------------------------------------------------------- | ||
*/ | ||
|
||
/* tslint:disable */ | ||
export interface Bar { | ||
id: number; | ||
id: number; | ||
} | ||
|
||
export interface Foo { | ||
a: Bar; | ||
b?: Bar; | ||
a: Bar; | ||
b?: Bar; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
|
||
/** ------------------------------------------------------ | ||
* THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY) | ||
* ------------------------------------------------------- | ||
*/ | ||
|
||
/* tslint:disable */ | ||
export interface Cat { | ||
id: number; | ||
id: number; | ||
} | ||
|
||
export interface IMutation { | ||
createCat(name?: string): Cat | Promise<Cat>; | ||
createCat(name?: string): Cat | Promise<Cat>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
|
||
/** ------------------------------------------------------ | ||
* THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY) | ||
* ------------------------------------------------------- | ||
*/ | ||
|
||
/* tslint:disable */ | ||
export interface Cat { | ||
id: number; | ||
id: number; | ||
} | ||
|
||
export interface IQuery { | ||
cat(id: string): Cat | Promise<Cat>; | ||
cat(id: string): Cat | Promise<Cat>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
|
||
/** ------------------------------------------------------ | ||
* THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY) | ||
* ------------------------------------------------------- | ||
*/ | ||
|
||
/* tslint:disable */ | ||
export interface Cat { | ||
id: number; | ||
name: string; | ||
age?: number; | ||
color?: string; | ||
weight?: number; | ||
id: number; | ||
name: string; | ||
age?: number; | ||
color?: string; | ||
weight?: number; | ||
} |