Releases: gqty-dev/gqty
Releases · gqty-dev/gqty
@gqty/[email protected]
@gqty/[email protected]
@gqty/[email protected]
@gqty/[email protected]
@gqty/[email protected]
[email protected]
2.1.0
Minor Changes
- 6df0318: Add new Core configuration
"depthLimit"
(by default is15
), needed to prevent possible infinite recursion, after the specified depth is reached, the proxy creation is stopped returningnull
.
@gqty/[email protected]
[email protected]
@gqty/[email protected]
@gqty/[email protected]
2.2.0
Minor Changes
-
cba5c43: Don't skip config read on NODE_ENV === "test"
-
a4fc294: New Envelop / graphql-ez plugin that automatically generates gqty code based on schema and gqty.config.cjs
// graphql-ez // ... import { useGenerateGQty } from '@gqty/cli/envelop'; const ezApp = CreateApp({ // ... envelop: { plugins: [ // ... useGenerateGQty({ // ... }), ], }, });
// Envelop import { envelop } from '@envelop/core'; import { useGenerateGQty } from '@gqty/cli/envelop'; //... const getEnveloped = envelop({ plugins: [ // ... useGenerateGQty({ // ... }), ], });