Skip to content

v0.0.21

Compare
Choose a tag to compare
@phortx phortx released this 16 Apr 06:32
· 250 commits to master since this release

Breaking Changes

Fetching multiple records with a filter will now generate a filter argument with all filter fields instead of an argument for each field:

So comments(userId: $userID) { ... } will become: comments(filter: { userId: $userID } ) { ... }.

This is also documented in the Example Queries page in the wiki.

Bugfixes

Integer arguments will now generate variable signature Int! instead of Number!.