Skip to content

Commit

Permalink
Merge pull request #2081 from katainaka0503/improve-compilation-time
Browse files Browse the repository at this point in the history
perf(@nestjs/graphql): make it faster to construct a typescript file from GraphQL schema
  • Loading branch information
kamilmysliwiec committed Jul 20, 2022
2 parents d8608a5 + 6552e13 commit d9339b0
Show file tree
Hide file tree
Showing 13 changed files with 177 additions and 186 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/* tslint:disable */
/* eslint-disable */

export interface Foo {
a: string[];
b?: Nullable<string[]>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@
/* eslint-disable */

/* Put anything here you like */

export type CustomDate = any;
type Nullable<T> = T | null;
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/* tslint:disable */
/* eslint-disable */

export enum Foobar {
Foo = "Foo",
Bar = "Bar",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/* tslint:disable */
/* eslint-disable */

export enum Animal {
DOG = "DOG",
CAT = "CAT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/* tslint:disable */
/* eslint-disable */

export enum Category {
POST = "POST"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/* tslint:disable */
/* eslint-disable */

export interface Bar {
id: number;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/* tslint:disable */
/* eslint-disable */

export interface Cat {
id: number;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/* tslint:disable */
/* eslint-disable */

export interface Cat {
id: number;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/* tslint:disable */
/* eslint-disable */

export interface Cat {
id: number;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/* tslint:disable */
/* eslint-disable */

export interface Cat {
id: number;
name: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/* tslint:disable */
/* eslint-disable */

export interface Cat {
__typename?: 'Cat';
id: number;
Expand Down

0 comments on commit d9339b0

Please sign in to comment.