New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@graphql-tools/batch-execute

Package Overview
Dependencies
Maintainers
4
Versions
1085
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@graphql-tools/batch-execute

A set of utils for faster development of GraphQL tools

9.0.13-alpha-c3bd8acb7db8c9e0c630a33c326f99bb336cf775
Source
npm
Version published
Weekly downloads
4.2M
-1.66%
Maintainers
4
Weekly downloads
 
Created

What is @graphql-tools/batch-execute?

@graphql-tools/batch-execute is a utility package for batching and executing GraphQL operations. It is part of the GraphQL Tools ecosystem and is designed to optimize the execution of multiple GraphQL operations by batching them together, which can improve performance and reduce the number of network requests.

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

Batch Execution

This feature allows you to batch multiple GraphQL operations and execute them together. The code sample demonstrates creating a simple schema and batching two queries ('{ hello }' and '{ world }') for execution.

const { batchExecute } = require('@graphql-tools/batch-execute');
const { makeExecutableSchema } = require('@graphql-tools/schema');
const { graphql } = require('graphql');

const typeDefs = `
  type Query {
    hello: String
    world: String
  }
`;

const resolvers = {
  Query: {
    hello: () => 'Hello',
    world: () => 'World'
  }
};

const schema = makeExecutableSchema({ typeDefs, resolvers });

const operations = [
  { query: '{ hello }' },
  { query: '{ world }' }
];

batchExecute({ schema, operations }).then(results => {
  console.log(results);
});

Custom Execution Context

This feature allows you to provide a custom execution context for the batched operations. The code sample demonstrates how to pass a context object containing user information to the batchExecute function.

const { batchExecute } = require('@graphql-tools/batch-execute');
const { makeExecutableSchema } = require('@graphql-tools/schema');
const { graphql } = require('graphql');

const typeDefs = `
  type Query {
    hello: String
    world: String
  }
`;

const resolvers = {
  Query: {
    hello: () => 'Hello',
    world: () => 'World'
  }
};

const schema = makeExecutableSchema({ typeDefs, resolvers });

const operations = [
  { query: '{ hello }' },
  { query: '{ world }' }
];

const context = { user: { id: 1, name: 'John Doe' } };

batchExecute({ schema, operations, context }).then(results => {
  console.log(results);
});

Other packages similar to @graphql-tools/batch-execute

FAQs

Package last updated on 06 Mar 2025

Did you know?

Socket

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