Skip to content

Releases: byme8/ZeroQL

v1.2.0

13 Aug 10:48
Compare
Choose a tag to compare

Added ability to use fragments from the different assemblies.

v1.2.0-preview2

12 Aug 17:04
Compare
Choose a tag to compare
v1.2.0-preview2 Pre-release
Pre-release

Fixed GraphqlQL template generation for files without namespace.

Full Changelog: v1.2.0-preview1...v1.2.0-preview2

v1.2.0-preview1

09 Aug 05:16
Compare
Choose a tag to compare

Initial support for fragments that are defined in another assembly.

Full Changelog: v1.1.2...v1.2.0-preview1

v1.1.2

22 Jul 06:01
Compare
Choose a tag to compare

Disable fragments parsing from another assembly because source generation fails to parse it.

v1.1.1

22 Jul 05:33
Compare
Choose a tag to compare

Fixed fragments parsing from another C# project.

v1.1.0

20 Jul 19:18
8a8757d
Compare
Choose a tag to compare
  • Added support for fragments
  • Added query preview on mouse hover on top of the Query method

v1.1.0-preview2

19 Jul 20:30
Compare
Choose a tag to compare

Add support for object initializers in "graphql" lambda.

v1.1.0-preview1

19 Jul 20:00
91937fb
Compare
Choose a tag to compare

Add initial support for fragments.

1.0.3

16 Jul 10:28
Compare
Choose a tag to compare

Improved source generation for enums to align them with the C# convention.
Before:

enum UserRole
{
   USER,
   ADMIN
}

Now:

enum UserRole
{
   User,
   Admin
}

1.0.2

11 Jul 07:50
Compare
Choose a tag to compare

Fixed static lambda detection.