Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

batched-graphql-request

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

batched-graphql-request

[![npm version](https://badge.fury.io/js/batched-graphql-request.svg)](https://badge.fury.io/js/http-link-dataloader)

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

batched-graphql-request

npm version

Features

  • Most simple and lightweight GraphQL client
  • Includes batching and caching based dataloader
  • Promise-based API (works with async / await)
  • Typescript support (Flow coming soon)

Idea

The idea of this library is to provide query batching and caching for Node.js backends on a per-request basis. That means, per http request to your Node.js backend, you create a new instance of BatchedGraphQLClient which has its own cache and batching. Sharing a BatchedGraphQLClient instance across requests against your webserver is not recommended as that would result in Memory Leaks with the Cache growing infinitely. The batching and caching is based on dataloader

Install

npm install batched-graphql-request

Examples

Creating a new Client per request

In this example, we proxy requests that come in the form of batched array. Instead of sending each request individually to my-endpoint, all requests are again batched together and send grouped to the underlying endpoint, which increases the performance dramatically.

import { BatchedGraphQLClient } from 'batched-graphql-request'
import * as express from 'express'
import * as bodyParser from 'body-parser'
 
const app = express()
 
/*
This accepts POST requests to /graphql of this form:
[
  {query: "...", variables: {}},
  {query: "...", variables: {}},
  {query: "...", variables: {}}
]
 */
 
app.use(
  '/graphql',
  bodyParser.json(),
  async (req, res) => {
    const client = new BatchedGraphQLClient('my-endpoint', {
      headers: {
        Authorization: 'Bearer my-jwt-token',
      },
    })
    
    const requests = Array.isArray(req.body) ? req.body : [req.body]
    
    const results = await Promise.all(requests.map(({query, variables}) => client.request(query, variables)))
    
    res.json(results)
  }
)
 
app.listen(3000, () =>
  console.log('Server running.'),
)

To learn more about the usage, please check out graphql-request

Keywords

FAQs

Package last updated on 01 Apr 2019

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc