Skip to content

Instantly share code, notes, and snippets.

View davp00's full-sized avatar
🏠
Working from home

Daniel Aureliano Viloria Perez davp00

🏠
Working from home
  • Santa Marta, Colombia
View GitHub Profile
@prevostc
prevostc / graphql.ts
Created August 22, 2018 15:41
Detect Graphql Selected Fields and subfields, account for aliases and fragments
import {
FieldNode,
FragmentSpreadNode,
GraphQLResolveInfo,
ResponsePath,
SelectionSetNode,
} from "graphql"
import { flatMap } from "lodash"
function instanceOfFieldNode(object: any): object is FieldNode {