added tenant + graph support

This commit is contained in:
Wyatt Johnson
2018-06-16 17:21:04 -06:00
parent 02e1236792
commit 4318e1ddbe
35 changed files with 1024 additions and 269 deletions
+15
View File
@@ -0,0 +1,15 @@
export type Cursor = Date | number | string;
export interface Edge<T> {
node: T;
cursor: Cursor;
}
export interface PageInfo {
hasNextPage: boolean;
}
export interface Connection<T> {
edges: Edge<T>[];
pageInfo: PageInfo;
}