Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@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,568,049 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.