Skip to content

Instantly share code, notes, and snippets.

@tomitrescak
Created July 25, 2018 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomitrescak/4661edf38eddd40ac63b530f340b91ac to your computer and use it in GitHub Desktop.
Save tomitrescak/4661edf38eddd40ac63b530f340b91ac to your computer and use it in GitHub Desktop.
export type Remapped<T> = {
 [P in keyof T]: (
 parent: null | undefined,
 args: FirstArgument<T[P]>,
 ctx: Context,
 info?: GraphQLResolveInfo
 ) => any
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment