Skip to content

Commit 40bfeef

Browse files
committed
Publish package @appsignal/urql@1.0.0
Update version number and CHANGELOG.md.
1 parent 682297a commit 40bfeef

3 files changed

Lines changed: 28 additions & 22 deletions

File tree

packages/urql/.changesets/add-urql-integration-package.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

packages/urql/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
## 1.0.0
3+
4+
_Published on 2026-04-21._
5+
6+
### Added
7+
8+
- Our new `@appsignal/urql` package allows reporting all GraphQL errors automatically through a custom `urql` exchange:
9+
10+
```javascript
11+
import { createClient, fetchExchange } from 'urql';
12+
import Appsignal from '@appsignal/javascript';
13+
import { createAppsignalExchange } from '@appsignal/urql';
14+
15+
const appsignal = new Appsignal({
16+
key: 'YOUR FRONTEND API KEY'
17+
});
18+
19+
const client = createClient({
20+
url: 'https://api.example.com/graphql',
21+
exchanges: [createAppsignalExchange(appsignal), fetchExchange]
22+
});
23+
```
24+
25+
(major [c0fc547](https://github.com/appsignal/appsignal-javascript/commit/c0fc5478521982af81adf7124595d328cab4988d))
26+
27+

packages/urql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@appsignal/urql",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"repository": {

0 commit comments

Comments
 (0)