Please look at https://github.com/web-ridge/gqlgen-sqlboiler/releases for latest releases and their changes!
Added support for string id's in sqlboiler
A few breaking changes, after this we will try to keep everything stable. We needed this since the go modules did not work well with the current approach.
Important NOTE You MUST run sqlboiler with the --no-back-referencing tag since we removed safety in converts for endless recursive converts in favor of the --no-back-referencing configuration.
- Remove self-referencing fixes for converts (volatiletech/sqlboiler#522)
- Upgrading to sqlboiler v4.0.0 (https://github.com/volatiletech/sqlboiler/releases)
- Move examples to https://github.com/web-ridge/gqlgen-sqlboiler-examples
- Move convert utils to https://github.com/web-ridge/utils-go
- Going to one go modules for the repository
- Change all github.com/web-ridge/gqlgen-sqlboiler/SOME_PACKAGE to github.com/web-ridge/gqlgen-sqlboiler/v2
- e.g. convert_plugin.go see changes here: https://github.com/web-ridge/gqlgen-sqlboiler-examples/commit/4ce348645380014c0b9c8700dc04ff03779366c5#diff-93204d7629b0baba6dc6614d4233e41d
Always make sure you're up to date with running:
go get github.com/web-ridge/gqlgen-sqlboiler/v2@LATEST_COMMIT
E.g.
go get github.com/web-ridge/gqlgen-sqlboiler/v2@latest
- Better relationships support
- Better helpers for reading the boiler structs
- Require uints for id's and removing other code
- Difference between create/update inputs support
- Fix for preloads where it sometimes was missing things