Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@graphql-tools/code-file-loader
Advanced tools
A set of utils for faster development of GraphQL tools
The @graphql-tools/code-file-loader package is part of the GraphQL Tools ecosystem and is designed to load and parse GraphQL schema definitions and documents from various file types. It supports loading from .graphql, .graphqls, .gql, .js, and .ts files. This loader is particularly useful in building GraphQL schemas directly from files, making it easier to manage and modularize GraphQL codebases.
Load GraphQL schema from code files
This feature allows developers to load GraphQL schemas directly from .graphql, .js, or .ts files. The code sample demonstrates how to use the codeFileLoader with the loadSchema function from @graphql-tools/load to asynchronously load a schema from a .graphql file.
import { loadSchema } from '@graphql-tools/load';
import { codeFileLoader } from '@graphql-tools/code-file-loader';
async function getSchema() {
const schema = await loadSchema('./schema.graphql', {
loaders: [codeFileLoader]
});
return schema;
}
Merge resolvers and type definitions
This feature supports loading and merging both resolvers and type definitions from multiple files. The code sample shows how to use loadFiles to load all resolver and type definition files from a project, and then use makeExecutableSchema to combine them into a single executable schema.
import { loadFiles } from '@graphql-tools/load-files';
import { makeExecutableSchema } from '@graphql-tools/schema';
async function buildSchema() {
const typesArray = await loadFiles('**/*.typeDefs.{js,ts}');
const resolversArray = await loadFiles('**/*.resolvers.{js,ts}');
const schema = makeExecutableSchema({
typeDefs: typesArray,
resolvers: resolversArray
});
return schema;
}
The graphql-import package allows importing and merging GraphQL SDL files. It is similar to @graphql-tools/code-file-loader but focuses more on SDL files and lacks direct support for loading from JavaScript or TypeScript files.
graphql-tag is primarily used to parse GraphQL query strings into a standard GraphQL AST. It is less about loading schemas from files and more focused on enabling the embedding and handling of GraphQL queries in JavaScript files.
FAQs
A set of utils for faster development of GraphQL tools
The npm package @graphql-tools/code-file-loader receives a total of 2,013,141 weekly downloads. As such, @graphql-tools/code-file-loader popularity was classified as popular.
We found that @graphql-tools/code-file-loader 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.