0.8.0 • Published 2 years ago

@timkendall/tql v0.8.0

Weekly downloads
105
License
MIT
Repository
-
Last release
2 years ago

TQL

Note: this is pre-production software at this point, see the current limitations.

tql is a TypeScript GraphQL query builder.

  • Codegen once - regenerate your GraphQL API client only when your schema changes.
  • Fully type-safe - take advantage of the full power of TypeScript's advanced type-system.
  • Backendless - integrate with any existing GraphQL client.

Try it Out

Try out our pre-compiled Star Wars GraphQL client on Repl.it!

Installation

npm install @timkendall/tql

Usage

You will need to compile a type-safe client one time before using. Do this with the provided CLI:

npx @timkendall/tql-gen <schema> > api.ts

import { useQuery } from '@apollo/client'

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

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(),

    // @note Deprecated field should be properly picked-up by VSCode!
    t.mass(),

    t.friends((t) => [
      t.__typename(),
      t.id(),
      t.name(),
      t.appearsIn(),

      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

1.0.0-rc.7

2 years ago

1.0.0-rc.8

2 years ago

1.0.0-rc.6

2 years ago

1.0.0-rc.5

2 years ago

1.0.0-rc.3

2 years ago

1.0.0-rc.4

2 years ago

1.0.0-rc.1

2 years ago

1.0.0-rc.2

2 years ago

0.8.0

3 years ago

0.7.1

3 years ago

0.7.0

3 years ago

0.6.0

3 years ago

0.5.4

3 years ago

0.5.3

3 years ago

0.5.2

3 years ago

0.5.1

3 years ago

0.5.0

3 years ago

0.4.1

3 years ago

0.4.0

3 years ago

0.3.0

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.1.1

3 years ago

0.1.0-alpha.5

3 years ago

0.1.0-alpha.4

3 years ago

0.1.0-alpha.3

3 years ago

0.1.0-alpha.2

3 years ago

0.1.0-alpha.1

3 years ago

0.1.0

3 years ago