
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
@aircall/exception-gql
Advanced tools
yarn add @aircall/exception @aircall/exception-gql
# Optional
yarn add @aircall/exception-zod
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
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 extendingException
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
## Installation
We found that @aircall/exception-gql demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.