![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@deepdub/graphql-combine-query
Advanced tools
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" } }
])
Run
ts-node ./test/test.ts
npm install graphql-combine-query
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)
}
*/
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
}
}
*/
FAQs
combine graphql query documents
We found that @deepdub/graphql-combine-query demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.