Releases: GraphtonLib/Graphton
Releases · GraphtonLib/Graphton
v0.6.3
0.6.3 (2022-01-15)
Features
- Add exported types for the three different query types (ed675b2)
- Added more usable exported types (13d91b8)
v0.6.2
0.6.2 (2022-01-08)
Features
- Add option to generate subscriptions factory (a3d3c41)
- Add options to customise the execution functions (get/do) to your own liking (3102b17)
v0.6.1
0.6.1 (2022-01-04)
Bug Fixes
- Fix a bug where ReturnTypeBuilder.except did not grab from the available fields (8a5ea32)
v0.6.0
0.6.0 (2022-01-04)
⚠ BREAKING CHANGES
- refactor: Rename the following methods:
with => select
, withRelated => with
, withoutRelated => without
- deprecated: If you were using without() to remove fields from selection, flip your condition and use .select() to add the field instead of removing it later.
Features
- deprecated: Removes the without() method from ReturnTypeBuilder (588e103)
- refactor: Renamed with to select, withRelated to with and withoutRelated to without to be more in line with Laravel Eloquent (dbeec50)
v0.5.0
0.5.0 (2021-12-17)
⚠ BREAKING CHANGES
- Returned enums are now (typed) strings, but when they are input (args) they need to be an instance of the enum to ensure correct query building.
Features
v0.4.1
0.4.1 (2021-12-16)
Bug Fixes
- Fix from last version is now compiled (640d5c4)
v0.4.0
0.4.0 (2021-12-16)
⚠ BREAKING CHANGES
- ID scalars are now parsed as String
Bug Fixes
- Parse GraphQL ID scalar to String instead of Int, following GraphQL spec (2440065)
v0.3.0
0.3.0 (2021-12-14)
⚠ BREAKING CHANGES
- Enums should now be called with its object - to ensure enums are correctly parsed they should be wrapped in a GraphtonEnum class
Features
- Complex argument structures (0955879)
- Generation for InputObjects (2b0119f)
- Generation of Enums (d600972)
Bug Fixes
- Less complex argument generic typing (77f032b)
v0.2.5
0.2.5 (2021-12-12)
Bug Fixes
- Less files are now packed with the package (ec7f6d8)
v0.2.4
0.2.4 (2021-12-12)
Bug Fixes
- Query argument - they now actually get set (0064601)