@zeepkist/graphql
TypeScript icon, indicating that this package has built-in type declarations

1.26.0 • Public • Published

GTR & Zworpshop GraphQL Clients

Fully typed TypeScript GraphQL clients for the GTR and Zworpshop APIs for Zeepkist.

Download the GTR mod for Zeepkist in Modkist (Zeepkist's Mod Loader) or on mod.io

Please note that as this is an ever green package that automatically updates types when it detects the GTR or Zworpshop schemas change, breaking changes may occur in minor releases.

Usage

CDN

<script type="module">
  import { gtr, zworpshop } from 'https://esm.run/@zeepkist/graphql'

  const gtrResponse = await gtr.query({
	...
  })

  const zworpshopResponse = await zworpshop.query({
	...
  })
</script>

Deno

import { gtr, zworpshop } from 'https://esm.run/@zeepkist/graphql'

const gtrResponse = await gtr.query({
...
})

const zworpshopResponse = await zworpshop.query({
...
})

Node / Bundlers

Install dependencies

yarn add @zeepkist/graphql

# or with npm:
npm install @zeepkist/graphql

Import and use

import { gtr, zworpshop } from '@zeepkist/graphql'

const gtrResponse = await gtr.query({
...
})

const zworpshopResponse = await zworpshop.query({
...
})

Enums

Enums can be imported from the specific service you are using, for example:

import { gtr } from '@zeepkist/graphql'
import { enumPlayerPointsOrderBy } from '@zeepkist/graphql/gtr'

const response = await gtr.query({
  allPlayerPoints: {
    __args: {
      orderBy: [enumPlayerPointsOrderBy.POINTS_DESC]
    }
  }
})

Documentation

To see all available exports and options, see the package documentation.

Contributing

You will either need Node.js' CorePack enabled or an installation of pnpm to run this package locally. CorePack is recommended as it will automatically keep you updated with pnpm version the repository is using.

Install development dependencies

pnpm i

Type-Check, Compile and Minify for Production

pnpm build

Run tests

pnpm test

Run tests with code coverage

pnpm coverage

Lint with ESLint

pnpm lint

Update schemas with the latest versions

pnpm generate

Readme

Keywords

none

Package Sidebar

Install

npm i @zeepkist/graphql

Weekly Downloads

82

Version

1.26.0

License

MIT

Unpacked Size

209 kB

Total Files

38

Last publish

Collaborators

  • wopian