Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@graphql-tools/schema
Advanced tools
A set of utils for faster development of GraphQL tools
The @graphql-tools/schema package is a utility library that helps with the creation and manipulation of GraphQL schemas. It provides functions to make it easier to work with GraphQL schema definitions, including merging type definitions, adding resolvers, and more.
makeExecutableSchema
This feature allows you to combine type definitions and resolvers to create an executable GraphQL schema.
const { makeExecutableSchema } = require('@graphql-tools/schema');
const typeDefs = `
type Query {
hello: String
}
`;
const resolvers = {
Query: {
hello: () => 'Hello world!',
},
};
const schema = makeExecutableSchema({
typeDefs,
resolvers,
});
addResolversToSchema
This feature enables you to add new resolvers to an existing GraphQL schema.
const { addResolversToSchema } = require('@graphql-tools/schema');
const schema = makeExecutableSchema({ typeDefs });
const resolvers = {
Query: {
hello: () => 'Hello world!',
},
};
addResolversToSchema({ schema, resolvers });
addSchemaLevelResolver
This feature allows you to add a resolver function that runs before any other resolvers for each operation.
const { addSchemaLevelResolver } = require('@graphql-tools/schema');
const schema = makeExecutableSchema({ typeDefs, resolvers });
const rootResolver = (root, args, context, info) => { /*...*/ };
addSchemaLevelResolver(schema, rootResolver);
This is a more comprehensive package that includes @graphql-tools/schema as a part of its toolkit. It provides additional utilities for mocking and stitching GraphQL schemas.
While not a direct alternative, Apollo Server uses similar concepts and includes the ability to create an executable schema. It is a full-featured GraphQL server that integrates well with @graphql-tools/schema.
This package provides functionality to merge GraphQL type definitions and resolvers. It is similar to some of the features in @graphql-tools/schema but is more focused on the merging aspect.
Check API Reference for more information about this package; https://www.graphql-tools.com/docs/api/modules/schema_src
You can also learn more about Generating Executable Schemas in this chapter; https://www.graphql-tools.com/docs/generate-schema
FAQs
A set of utils for faster development of GraphQL tools
The npm package @graphql-tools/schema receives a total of 7,916,357 weekly downloads. As such, @graphql-tools/schema popularity was classified as popular.
We found that @graphql-tools/schema 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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.