Releases: melvinkcx/graphql-utilities
Releases · melvinkcx/graphql-utilities
v0.4 With Query Cost Analysis Is Now Released!
v0.4 of graphql-utilities
introduces query cost analysis, to protect your GraphQL server against overly complex queries and mutations.
With a custom directive @cost()
added, all you need to do is to define the complexities of your Query, Objects, etc, and let the library does the heavy lifting for you!
Full documentation is available here
Released v0.3
In this release,
- The issue of multiple oneshot middleware not running is fixed (#5)
Released v0.2
In this release:
run_only_once
decorator doesn't run at second request issue is fixed (#2)
Released v0.1
In this released,
- decorator for one-shot middleware (or operation-level only middleware) is added
- custom execution context to support depth analysis is added