Migrate to a monorepo structure (#2909)
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
export interface IConnectionArguments {
|
||||
first?: number | null;
|
||||
after?: string | null;
|
||||
last?: number | null;
|
||||
before?: string | null;
|
||||
}
|
||||
|
||||
export type ConnectionArgumentsUnion =
|
||||
| ForwardPaginationArguments
|
||||
| BackwardPaginationArguments
|
||||
| NoPaginationArguments;
|
||||
|
||||
export type ForwardPaginationArguments = { first: number; after?: string };
|
||||
export type BackwardPaginationArguments = { last: number; before?: string };
|
||||
export type NoPaginationArguments = Record<string, unknown>;
|
||||
Reference in New Issue
Block a user