gqlgen-sqlboiler icon indicating copy to clipboard operation
gqlgen-sqlboiler copied to clipboard

This is a plugin for gqlgen to generate converts + filter queries and resolvers for sqlboiler

Results 17 gqlgen-sqlboiler issues
Sort by recently updated
recently updated
newest added

Column should not be nullable now since else it will add a pointer in where statement SELECT `product`.* FROM `product` WHERE ((name, id) > (?,?)) ORDER BY name ASC, id...

https://gqlgen.com/recipes/migration-0.11/ Blocked by: https://github.com/web-ridge/sqlboiler-graphql-schema/issues/1

enhancement
In development

I'll try to explain myself fully. In my current code, I do the following when sending data to the client; Here is the database model ![image](https://user-images.githubusercontent.com/7204994/104738460-7572a000-573d-11eb-8a84-ec56fa058e0c.png) Here is the external...

question

Hey, finally got time to come back to using gqlgen-sqlboiler. I'm running into another issue. Here is my convert_plugin.go ``` package main import ( "fmt" "os" "github.com/99designs/gqlgen/api" "github.com/99designs/gqlgen/codegen/config" gbgen "github.com/web-ridge/gqlgen-sqlboiler/v3"...

question

Your work is amazing! It feels like every line of code is sweaty. :smile: A huge thank you for all this. In a few hours I want to start a...

enhancement
question

Since you are fighting my own battles (gqlgen and go) can I ask you how are you dealing with the hot topic of validations? E.g. from your example: ```graphql input...

enhancement
question

Works the same as convert overrides looks in package for other resolver names, if they exist it will still generate the resolver but the overrided resolver will be commented out

enhancement

Do we have an example of how to manage a one-to-many model? Example: an invoice with multiple rows. When I create or update an invoice the rows are saved or...

enhancement