You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

tiny-graphql-query-compiler

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tiny-graphql-query-compiler

`tiny-graphql-query-compiler` provides a JavaScript-land DSL for constructing GraphQL queries.

0.2.3
latest
Source
npmnpm
Version published
Maintainers
2
Created
Source

tiny-graphql-query-compiler

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

Package last updated on 21 May 2024

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