Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
@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.
FAQs
A set of utils for faster development of GraphQL tools
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 3 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
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.