Skip to content

Releases: GraphtonLib/Graphton

v0.6.3

15 Jan 14:19
Compare
Choose a tag to compare

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

08 Jan 22:28
Compare
Choose a tag to compare

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

04 Jan 19:47
Compare
Choose a tag to compare

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

04 Jan 19:27
Compare
Choose a tag to compare

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

17 Dec 19:30
Compare
Choose a tag to compare

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

16 Dec 01:38
Compare
Choose a tag to compare

0.4.1 (2021-12-16)

Bug Fixes

  • Fix from last version is now compiled (640d5c4)

v0.4.0

16 Dec 01:34
Compare
Choose a tag to compare

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

14 Dec 23:38
Compare
Choose a tag to compare

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

12 Dec 18:01
Compare
Choose a tag to compare

0.2.5 (2021-12-12)

Bug Fixes

  • Less files are now packed with the package (ec7f6d8)

v0.2.4

12 Dec 15:32
Compare
Choose a tag to compare

0.2.4 (2021-12-12)

Bug Fixes

  • Query argument - they now actually get set (0064601)