From 218c80196e489ee7839dbca6ae5189d374ecabc9 Mon Sep 17 00:00:00 2001 From: kalijonn <43421621+kalijonn@users.noreply.github.com> Date: Mon, 18 Sep 2023 19:56:48 +0530 Subject: [PATCH 1/2] docs: add urql and jotai-urql description. add jotai-urql github repo link --- docs/integrations/urql.mdx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/integrations/urql.mdx b/docs/integrations/urql.mdx index 21edaa2199..0ce52f0756 100644 --- a/docs/integrations/urql.mdx +++ b/docs/integrations/urql.mdx @@ -5,6 +5,15 @@ nav: 4.03 keywords: urql --- +[urql](https://formidable.com/open-source/urql/) offers a toolkit for GraphQL querying, caching, and state management. + + +From the [Overview docs](https://formidable.com/open-source/urql/docs/): + +> urql is a highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow. It's built to be both easy to use for newcomers to GraphQL, and extensible, to grow to support dynamic single-app applications and highly customized GraphQL infrastructure. In short, urql prioritizes usability and adaptability. + +[jotai-urql](https://github.com/jotaijs/jotai-urql) is a Jotai integration library for URQL. It offers a cohesive interface that incorporates all of URQL's GraphQL features, allowing you to leverage these functionalities alongside your existing Jotai state. + ### Install You have to install `jotai-urql`, `@urql/core` and `wonka` to use the integration. From a488770743af4547dd6b016ef5b01dc6cdad1c4a Mon Sep 17 00:00:00 2001 From: kalijonn <43421621+kalijonn@users.noreply.github.com> Date: Mon, 18 Sep 2023 20:00:11 +0530 Subject: [PATCH 2/2] run yarn run prettier --- docs/integrations/urql.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/integrations/urql.mdx b/docs/integrations/urql.mdx index 0ce52f0756..e0ddada7f2 100644 --- a/docs/integrations/urql.mdx +++ b/docs/integrations/urql.mdx @@ -7,7 +7,6 @@ keywords: urql [urql](https://formidable.com/open-source/urql/) offers a toolkit for GraphQL querying, caching, and state management. - From the [Overview docs](https://formidable.com/open-source/urql/docs/): > urql is a highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow. It's built to be both easy to use for newcomers to GraphQL, and extensible, to grow to support dynamic single-app applications and highly customized GraphQL infrastructure. In short, urql prioritizes usability and adaptability.