Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

piral-urql

Package Overview
Dependencies
Maintainers
1
Versions
947
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

piral-urql - npm Package Compare versions

Comparing version 0.8.0-pre.682 to 0.8.0-pre.683

6

package.json
{
"name": "piral-urql",
"version": "0.8.0-pre.682",
"version": "0.8.0-pre.683",
"description": "Introduces the query, mutate, and subscribe API extensions for extending piral-core.",

@@ -42,3 +42,3 @@ "keywords": [

"devDependencies": {
"piral-core": "^0.8.0-pre.682"
"piral-core": "^0.8.0-pre.683"
},

@@ -55,3 +55,3 @@ "peerDependencies": {

},
"gitHead": "04da0183524adea0bae44c0f30f2b3ee1ce36e88"
"gitHead": "2a3db9bdcf5523446ac735eb5f064be6afd600ba"
}

@@ -11,4 +11,42 @@ [![Piral Logo](https://github.com/smapiot/piral/raw/master/docs/assets/logo.png)](https://piral.io)

## Setup and Bootstrapping
The provided library only brings API extensions for pilets to a Piral instance.
For the setup of the library itself you'll need to import `createGqlApi` from the `piral-urql` package.
```tsx
import { createGqlApi } from 'piral-urql';
```
The integration looks like:
```tsx
const instance = createInstance({
// important part
extendApi: [createGqlApi()],
// ...
});
```
Via the options the correct client can be set up. Setting the `subscriptionUrl` to `false` will prevent using a subscription.
For example:
```tsx
const client = setupGqlClient({
url: 'https://example.com/graphql',
subscriptionUrl: false,
lazy: true,
});
const instance = createInstance({
// important part
extendApi: [createGqlApi(client)],
// ...
});
```
## License
Piral is released using the MIT license. For more information see the [license file](./LICENSE).
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc