From 8411e92485e456a7db9689ce778a6f49fdb89674 Mon Sep 17 00:00:00 2001 From: "Vicary A." Date: Thu, 29 Aug 2024 12:58:37 +0800 Subject: [PATCH] docs: add `gqty` --- .../javascript/client/gqty.md | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/code/language-support/javascript/client/gqty.md diff --git a/src/code/language-support/javascript/client/gqty.md b/src/code/language-support/javascript/client/gqty.md new file mode 100644 index 0000000000..ff09c55474 --- /dev/null +++ b/src/code/language-support/javascript/client/gqty.md @@ -0,0 +1,26 @@ +--- +name: GQty +description: The No-GraphQL client for TypeScript. +url: http://gqty.dev/ +github: gqty-dev/gqty +npm: "gqty" +--- + +GQty is a query builder, a query fetcher and a cache manager solution all-in-one. + +You interact with your GraphQL endpoint via Proxy objects. Under the hood, GQty captures what is being read, checks cache validity, fetch missing contents and then updates the cache for you. + +Start using GQty by simply running our interactive codegen: + +```bash +# npm +npx @gqty/cli + +# yarn +yarn dlx @gqty/cli + +# pnpm +pnpm dlx @gqty/cli +``` + +GQty also provides framework specific integrations such as `@gqty/react` and `@gqty/solid`, which can be installed via our CLI.