apollo-server/packages/apollo-server-hapi/src/index.ts
Prosper Otemuyiwa 61b4939327
Enable GraphQLUpload for Apollo Server 2.0 (#1322)
* export GraphQLUpload

* fix GraphQLScalar typing
2018-07-10 05:36:34 +01:00

23 lines
408 B
TypeScript

export {
GraphQLUpload,
GraphQLOptions,
gql,
// Errors
ApolloError,
toApolloError,
SyntaxError,
ValidationError,
AuthenticationError,
ForbiddenError,
UserInputError,
} from 'apollo-server-core';
export * from 'graphql-tools';
export * from 'graphql-subscriptions';
// ApolloServer integration.
export {
ApolloServer,
registerServer,
ServerRegistration,
} from './ApolloServer';