urql-scalars-exchange
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

URQL Scalars Exchange

urql exchange to allow mapping of custom scalar types

Example

pnpm add urql-scalars-exchange

or

npm install --save urql-scalars-exchange

Define a custom scalar like Json in your schema via:

scalar Json

Download the introspection query from your endpoint. See the urql docs for a script to download the schema from your endpoint.

Or, you can use an introspection .ts file genereated by graphql-codegen or gql.tada.

Configure the exchange like so

import customScalarsExchange from 'urql-scalars-exchange'
import schema from '../schema.json'
// or `import { schema } from '../introspection.ts`

const scalarsExchange = customScalarsExchange({
	schema: schema,
	scalars: {
		Json(value) {
			return JSON.parse(value)
		},
	},
})

Finally add the exchange to your urql client like so

const client = createClient({
	url: 'http://localhost:1234/graphql',
	exchanges: [dedupExchange, scalarsExchange, fetchExchange],
})

FAQ

Should this exchange be listed before or after the cache exchange?

This exchange should be listed before any cache exchange. Cache exchanges should represent the the data as returned by the endpoint.

Local Development

Below is a list of commands you will probably find useful.

npm run build or pnpm build

Bundles the package to the dist folder. The package is optimized and bundled with Rollup into multiple formats (CommonJS, UMD, and ES Module).

npm test or pnpm test

Runs the test watcher (vitest) in an interactive mode.

Acknowledgements

This project is an updated fork of the urql-custom-scalars-exchange project.

I have incorporated the changes made in the following PRs, so credit goes to the respective authors (thanks !):

and @rwe for offering some advice and review on those PRs.

Readme

Keywords

Package Sidebar

Install

npm i urql-scalars-exchange

Weekly Downloads

15

Version

1.0.2

License

MIT

Unpacked Size

220 kB

Total Files

5

Last publish

Collaborators

  • luhagel