Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@aircall/exception-gql

Package Overview
Dependencies
Maintainers
0
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aircall/exception-gql

## Installation

  • 0.2.4
  • latest
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Getting Started

Installation

yarn add @aircall/exception @aircall/exception-gql
# Optional
yarn add @aircall/exception-zod

Usage

GraphQL Middleware

import { InsufficientPermissionException, ResourceNotFoundException } from '@aircall/exception';
import { graphQLMiddleware } from '@aircall/exception-gql';

// Controller
export function deleteConversationController() {
  return graphQLMiddleware(async (identity, { input }) => {
    const [, lineID, companyID] = input.conversationID.split('|');
    const identityCompanyID = identity.claims['custom:company_id'];
    const line = await lineRepository.findOne(lineID);

    if (!line) {
      throw new ResourceNotFoundException({
        resource: 'conversation'
      });
    }

    const isAuthorized = await isAuthorizedToDeleteConversation(identity, input.conversationID);

    if (!isAuthorized) {
      throw new InsufficientPermissionException({
        resource: 'conversation',
        access: 'delete'
      });
    }

    return {
      conversationID: input.conversationID,
      __typename: 'ConversationDeleted'
    };
  });
}
type Mutation {
  deleteConversation(input: DeleteConversationInput!): DeleteConversationResult!
}

input DeleteConversationInput {
  conversationID: ID!
}

union DeleteConversationResult =
    ConversationDeleted
  | ResourceNotFoundException
  | InsufficientPermissionException
  | GenericException

Zod Middleware

import * as z from 'zod';

import { InsufficientPermissionException, ResourceNotFoundException } from '@aircall/exception';
import { graphQLMiddleware } from '@aircall/exception-gql';
import { zodMiddleware } from '@aircall/exception-zod';

// Controller
const deleteConversationSchema = z.object({
  input: z.object({
    conversationID: z.string()
  })
});

export function deleteConversationController() {
  return graphQLMiddleware(
    zodMiddleware(async (identity, { input }) => {
      const schema = deleteConversationSchema.parse(input);
      const [, lineID, companyID] = schema.input.conversationID.split('|');
      // Rest of the business logic
    })
  );
}

Just by adding the zodMiddleware to the controller, any error thrown by the controller will be caught by the middleware and returned as a proper error extending Exception class.

Note: Any JS Error thrown inside of the controller which is not of type Exception will be caught by the GraphQL middleware and returned as a GenericException, so make sure that your GraphQL schema has a union type that includes GenericException.

FAQs

Package last updated on 26 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc