Socket
Socket
Sign inDemoInstall

@graphql-tools/merge

Package Overview
Dependencies
6
Maintainers
3
Versions
1087
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@graphql-tools/merge

A set of utils for faster development of GraphQL tools


Version published
Maintainers
3
Weekly downloads
8,355,675
decreased by-7.7%

Weekly downloads

Package description

What is @graphql-tools/merge?

The @graphql-tools/merge package is designed to provide a set of utilities for merging GraphQL schemas and type definitions. It is part of the larger GraphQL Tools library, which offers a variety of tools for working with GraphQL schemas, including stitching, mocking, and more. The merge package specifically focuses on combining multiple GraphQL type definitions and schemas into a single schema, which is particularly useful in modularized codebases where schema definitions may be spread across multiple files or modules.

What are @graphql-tools/merge's main functionalities?

Merging GraphQL Type Definitions

This feature allows for the merging of GraphQL type definitions from multiple sources. It's useful for modularizing your GraphQL schema definitions.

const { mergeTypeDefs } = require('@graphql-tools/merge');
const typeDefs1 = `type Query { foo: String }`;
const typeDefs2 = `type Query { bar: Int }`;
const mergedTypeDefs = mergeTypeDefs([typeDefs1, typeDefs2]);

Merging GraphQL Schemas

This feature enables the merging of multiple GraphQL schemas into a single schema. It is particularly useful for combining schemas from different parts of an application or different services.

const { makeExecutableSchema } = require('@graphql-tools/schema');
const { mergeSchemas } = require('@graphql-tools/merge');
const schema1 = makeExecutableSchema({ typeDefs: `type Query { foo: String }` });
const schema2 = makeExecutableSchema({ typeDefs: `type Query { bar: Int }` });
const mergedSchema = mergeSchemas({ schemas: [schema1, schema2] });

Other packages similar to @graphql-tools/merge

Readme

Source

Check API Reference for more information about this package; https://www.graphql-tools.com/docs/api/modules/merge_src

You can also learn more about Schema Merging in this chapter; https://www.graphql-tools.com/docs/schema-merging

FAQs

Last updated on 23 Feb 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc