Skip to content

Commit

Permalink
fix: updated federation tests
Browse files Browse the repository at this point in the history
  • Loading branch information
burn2delete committed Dec 21, 2023
1 parent 6c9065e commit a3d9842
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,8 @@ export interface IQuery {
foo(): Nullable<boolean> | Promise<Nullable<boolean>>;
}

export interface ISchema {
Query: IQuery;
}

type Nullable<T> = T | null;
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,8 @@ export class User {
posts?: Nullable<Nullable<Post>[]>;
}

export class ISchema {
Query: IQuery;
}

type Nullable<T> = T | null;
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,8 @@ export class User {
posts?: Nullable<Nullable<Post>[]>;
}

export class ISchema {
Query: IQuery;
}

type Nullable<T> = T | null;

0 comments on commit a3d9842

Please sign in to comment.