Releases: web-ridge/gqlgen-sqlboiler
v2.0.13
Added support for more packages and custom scalars outside of boilergql.
Bugfix for web-ridge/utils-go#7
*time.Time was parsed as *Time and creating not needed conversions since database type and gqlgen type were the same.
Thanks to @troian for helping reproduce this issue
A side effect of this change will be that some convert function names will change since it includes the package name of the graphql field (excluding internal functions used by boilergql, models and graphql_models.)
TimeTimeToPointerTime is going to change in TimeTimeToPointerTimeTime
v2.0.12
gqlgen-sqlboiler now supports boolean filters which resolves #22
We're changing the boolean input filter type as of [email protected]
input BooleanFilter {
isTrue: Boolean
isFalse: Boolean
isNull: Boolean
}
To
input BooleanFilter {
equalTo: Boolean
notEqualTo: Boolean
}
v2.0.11
Refactor preloads since it generated too many fields at generate time. #21
It now maps preloads in run-time to database preloads.
You'll need to update github.com/web-ridge/utils-go/boilergql@master too!
You can see changes in generated code here:
web-ridge/gqlgen-sqlboiler-examples@50235be
- 11,324 lines of code removed in /helpers/preload.go which is more or less what this release is about ;)
v2.0.10
Fixed #20 + adding preloads everywhere till maximum of 4 levels deep (if you need deeper we could make this configurable :)
Fixed web-ridge/utils-go#3 where pointer was not recognized when using a type from a package.
v2.0.9
v2.0.8
v2.0.7
v2.0.6
Bugfix release
Fixed uint id's which were broken since previous release
Small bugfixes for string ID's
v2.0.4 Also add plural convert