insomnia/flow-typed/graphql.js
Gregory Schier 1df3ba4531 GraphQL Body Type (#376)
* Initial GraphQL support

* Better error handling and formatting
2017-07-24 21:15:24 -07:00

16 lines
301 B
JavaScript

declare module 'graphql' {
declare module.exports: *
}
declare module 'graphql/utilities/introspectionQuery' {
declare module.exports: {
introspectionQuery: string
}
}
declare module 'graphql/utilities/buildClientSchema' {
declare module.exports: {
buildClientSchema: Function
}
}