feat: added parent/parents edges

This commit is contained in:
Wyatt Johnson
2018-09-22 00:26:09 -06:00
parent 0fbd27cdcb
commit 1702040537
9 changed files with 246 additions and 8 deletions
+7
View File
@@ -0,0 +1,7 @@
declare module "graphql-fields" {
import { GraphQLResolveInfo } from "graphql";
export default function graphqlFields<T>(
info: GraphQLResolveInfo
): { [P in keyof T]: any };
}