timkendall / tql

A GraphQL query builder for TypeScript. Avoid the pain of codegen.

Home Page:https://tql.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Warning: This library will not be recieving updates any time soon.

๐Ÿ™ Thank you to all contributors. I am not interested in maintaining this right now but please feel free to fork and take inspiration from!

TQL

tql is a TypeScript GraphQL query builder.

  • ๐Ÿ”’ Fully Type-safe - Operation results and variables are fully type-safe thanks to TypeScript's advanced type-system.
  • ๐Ÿ”Œ Backendless: - Integrate with any GraphQL client to execute queries.
  • ๐Ÿ”ฎ Automatic Variables: - Variable definitions are automatically derived based on usage.
  • ๐Ÿ“ Inline Documentation: JSDoc comments provide descriptions and deprecation warnings for fields directly in your editor.
  • โšก Single Dependency: graphql-js is our single runtime (peer) dependency.

Try out our pre-compiled Star Wars GraphQL SDK on CodeSandbox!

Installation

  1. npm install @timkendall/tql@beta

  2. Generate an SDK with npx @timkendall/tql-gen <schema> -o sdk.ts

<schema> can be a path to local file or an http endpoint url.

Usage

Import selector functions to start defining queries ๐ŸŽ‰

import { useQuery } from '@apollo/client'

// SDK generated in previous setup
import { character, query, $ } from './starwars'

// define reusable selections
const CHARACTER = character(t => [
  t.id(),
  t.name(),
  t.appearsIn(),
])

const QUERY = query((t) => [
  t.reviews({ episode: Episode.EMPIRE }, (t) => [
    t.stars(),
    t.commentary(),
  ]),

  t.human({ id: $('id') }, (t) => [
    t.__typename(),
    t.id(),
    t.name(),
    t.appearsIn(),
    t.homePlanet(),

    // deprecated field should be properly picked-up by your editor
    t.mass(),

    t.friends((t) => <const>[
      t.__typename(),
      
      ...CHARACTER,
      // or
      CHARACTER.toInlineFragment(),

      t.on("Human", (t) => [t.homePlanet()]),
      t.on("Droid", (t) => [t.primaryFunction()]),
    ]),

    t.starships((t) => [t.id(), t.name()]),
  ]),
]).toQuery({ name: 'Example' })

// type-safe result and variables ๐Ÿ‘
const { data } = useQuery(QUERY, { variables: { id: '1011' }})

Inspiration

I was inspired by the features and DSL's of graphql-nexus, graphql_ppx, gqless, and caliban.

License

MIT

About

A GraphQL query builder for TypeScript. Avoid the pain of codegen.

https://tql.dev

License:MIT License


Languages

Language:TypeScript 87.0%Language:JavaScript 11.1%Language:CSS 1.9%