Skip to content

Commit aeaf8e5

Browse files
committed
added example types
1 parent d73295a commit aeaf8e5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
export type TestQueryVariables = Exact<{ [key: string]: never }>;
2+
3+
export type TestQuery = {
4+
__typename?: 'Query';
5+
testArr1?: Array<string | null> | null;
6+
testArr2: Array<string | null>;
7+
testArr3: Array<string>;
8+
};

0 commit comments

Comments
 (0)