
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
tiny-graphql-query-compiler
Advanced tools
`tiny-graphql-query-compiler` provides a JavaScript-land DSL for constructing GraphQL queries.
tiny-graphql-query-compiler provides a JavaScript-land DSL for constructing GraphQL queries.
Example:
import { compile } from "tiny-graphql-query-compiler";
const query = compile({
type: "query",
fields: {
id: true,
name: true,
age: true,
},
});
// query =>
`
query {
id
name
age
}
`;
To pass arguments, you can use the Call helper:
import { compile, Call } from "tiny-graphql-query-compiler";
const query = compile({
type: "query",
fields: {
user: Call(
{ id: 1 },
{
id: true,
name: true,
age: true,
}
),
},
});
// query =>
`
query {
user(id: 1) {
id
name
age
}
}
`;
To pass arguments using GraphQL variables, you can use the Call helper with the Var helper:
import { compile, Call, Var } from "tiny-graphql-query-compiler";
const query = compile({
type: "query",
fields: {
user: Call(
{ id: Var({ type: "ID!" }) },
{
id: true,
name: true,
age: true,
}
),
},
});
// query =>
`
query ($id: ID!) {
user(id: $id) {
id
name
age
}
}
`;
To get back a query and a set of variables to pass to that query, use the compileWithVariableValues function, and pass a value to each one of your variables:
import { compile, Call, Var } from "tiny-graphql-query-compiler";
const { query, variables } = compileWithVariableValues({
type: "query",
fields: {
user: Call(
{ id: Var({ type: "ID!", value: 1 }) },
{
id: true,
name: true,
age: true,
}
),
},
});
// query =>
`
query ($id: ID!) {
user(id: $id) {
id
name
age
}
}
`;
// variables =>
{
id: 1;
}
await someClient.execute({ query, variables });
FAQs
`tiny-graphql-query-compiler` provides a JavaScript-land DSL for constructing GraphQL queries.
We found that tiny-graphql-query-compiler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.

Product
Bringing supply chain security to the next generation of JavaScript package managers