apollo-server-express#ForbiddenError TypeScript Examples
The following examples show how to use
apollo-server-express#ForbiddenError.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: apollo-server-resolver-adapter.ts From clean-ts-api with GNU General Public License v3.0 | 6 votes |
adaptResolver = async (controller: Controller, args?: any, context?: any): Promise<any> => {
const request = {
...(args || {}),
accountId: context?.req?.accountId
}
const httpResponse = await controller.handle(request)
switch (httpResponse.statusCode) {
case 200:
case 204: return httpResponse.body
case 400: throw new UserInputError(httpResponse.body.message)
case 401: throw new AuthenticationError(httpResponse.body.message)
case 403: throw new ForbiddenError(httpResponse.body.message)
default: throw new ApolloError(httpResponse.body.message)
}
}
Example #2
Source File: auth-directive.ts From clean-ts-api with GNU General Public License v3.0 | 6 votes |
authDirectiveTransformer = (schema: GraphQLSchema): GraphQLSchema => {
return mapSchema(schema, {
[MapperKind.OBJECT_FIELD]: (fieldConfig) => {
const authDirective = getDirective(schema, fieldConfig, 'auth')
if (authDirective) {
const { resolve } = fieldConfig
fieldConfig.resolve = async (parent, args, context, info) => {
const request = {
accessToken: context?.req?.headers?.['x-access-token']
}
const httpResponse = await makeAuthMiddleware().handle(request)
if (httpResponse.statusCode === 200) {
Object.assign(context?.req, httpResponse.body)
return resolve.call(this, parent, args, context, info)
} else {
throw new ForbiddenError(httpResponse.body.message)
}
}
}
return fieldConfig
}
})
}