Skip to content

Releases: melvinkcx/graphql-utilities

v0.4 With Query Cost Analysis Is Now Released!

22 Feb 06:35
43ced16
Compare
Choose a tag to compare

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

20 Feb 01:56
b30b30b
Compare
Choose a tag to compare

In this release,

  • The issue of multiple oneshot middleware not running is fixed (#5)

Released v0.2

19 Feb 06:23
Compare
Choose a tag to compare

In this release:

  • run_only_once decorator doesn't run at second request issue is fixed (#2)

Released v0.1

31 Jan 07:49
Compare
Choose a tag to compare

In this released,

  • decorator for one-shot middleware (or operation-level only middleware) is added
  • custom execution context to support depth analysis is added