npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@deepdub/graphql-combine-query

v2.0.2

Published

combine graphql query documents

Downloads

178

Readme

@deepdub/graphql-combine-query

This graphql-combine-query fork extends combinedQuery, adding a method that allows combining multiple queries, repeating or not, into one.

Previously, this was not possible:

const { document, variables } = (() =>
  combineQuery("CompositeMutation")
    .add(createFooMutation, { foo: { name: "A foo" } })
    .add(updateFooMutation, { foo: { id: "some-id", name: "Another foo" } })
    .add(createFooMutation, { foo: { name: "Yet another foo" } })

As both createFooMutation would collide (you could use addN, but that would re-order the mutations, making it impossible to do the update between both create's).

With the new addAssorted you could write this, instead:

const { document, variables } = (() =>
  combineQuery("CompositeMutation")
    .addAssorted([
      createFooMutation,
      updateFooMutation,
      createFooMutation
    ], [
      { foo: { name: "A foo" } },
      { foo: { id: "some-id", name: "Another foo" } },
      { foo: { name: "Yet another foo" } }
    ])

Test

Run

ts-node ./test/test.ts

Why?

  • There are situations where you do not know ahead of time what fields will need to be invoked with a mutation, so cannot prepate a single graphql document ahead of time
  • Some graphql servers, like Hasura will execute each mutation in a single database transaction, which is desirable for changes being made
  • It just might be easier to deal with state of a single query/mutation compared to making several calls to backend

Install

npm install graphql-combine-query

Usage / examples

combine several queries / mutations together

create query builder with combineQuery(newQueryName) and use .add(document, variables) to add queries to it. argument list & top level selections are concatenated

import combineQuery from "graphql-combine-query";

import gql from "graphql-tag";

const fooQuery = gql`
  query FooQuery($foo: String!) {
    getFoo(foo: $foo)
  }
`;

const barQuery = gql`
  query BarQuery($bar: String!) {
    getBar(bar: $bar)
  }
`;

const { document, variables } = combineQuery("FooBarQuery")
  .add(fooQuery, { foo: "some value" })
  .add(barQuery, { bar: "another value" });

console.log(variables);
// { foo: 'some value', bar: 'another value' }

print(document);
/*
query FooBarQuery($foo: String!, $bar: String!) {
   getFoo(foo: $foo)
   getBar(bar: $bar)
}
*/

add multiple instances of the same query / mutation

It's not uncommon to need to add the same mutation several times, eg when updating multiple objects. In this case use addN(document, variables[]) Arguments & top level selections will be renamed/aliased with index appended.

Let's say we want to create foo and update several bars by id:

import combineQuery from "graphql-combine-query";

import gql from "graphql-tag";

const createFooMutation = gql`
  mutation CreateFoo($foo: foo_input!) {
    createFoo(foo: $foo) {
      id
    }
  }
`;

const updateBarMutation = gql`
  mutation UpdateBar($bar_id: Int!, $bar: bar_update_input!) {
    updateBar(where: { id: { _eq: $bar_id } }, _set: $bar) {
      id
    }
  }
`;

const { document, variables } = (() =>
  combineQuery("CompositeMutation")
    .add(createFooMutation, { foo: { name: "A foo" } })
    .addN(updateBarMutation, [
      { bar_id: 1, bar: { name: "Some bar" } },
      { bar_id: 2, bar: { name: "Another bar" } },
    ]))();

console.log(variables);
/*
{
  foo: { name: 'A foo' },
  bar_id_0: 1,
  bar_0: { name: 'Some bar' },
  bar_id_1: 2,
  bar_1: { name: 'Another bar' }
}

*/

print(document);

/*
mutation CompositeMutation($foo: foo_input!, $bar_id_0: Int!, $bar_0: bar_update_input!, $bar_id_1: Int!, $bar_1: bar_update_input!) {
    createFoo(foo: $foo) {
      id
    }
    updateBar_0: updateBar(where: {id: {_eq: $bar_id_0}}, _set: $bar_0) {
      id
    }
    updateBar_1: updateBar(where: {id: {_eq: $bar_id_1}}, _set: $bar_1) {
      id
    }
  }
*/