Branden Horiuchi
Branden Horiuchi
not sure if this is still an active effort but noticed only v3 supported. i did some similar work on https://github.com/bhoriuchi/go-chef-crypto and have v1 and v2 if interested in adding...
Any thoughts on potentially using openapi spec to define the configuration that drives the code generation? It's extensible and the type/service/client generation could be pluggable to use notype, protobuf, etc
any thoughts on where/how the models would be defined? Something like https://github.com/infobloxopen/protoc-gen-gorm would integrate with protobuf definitions but would not be useful for "noproto". Using struct tags would work for...
graphql can only query fields defined in the object so you cannot add dynamic/undefined fields to a query. You do however have a few options 1. if the data in...
by users do you mean developers using this package? I would think it's on the developer to check that the value is not nil.
I'm working on a go version of makeExecutableSchema that might help with this https://github.com/bhoriuchi/graphql-go-tools.
I mentioned this a bit ago, but I have integrated this functionality into https://github.com/bhoriuchi/graphql-go-tools See test code for example usage. https://github.com/bhoriuchi/graphql-go-tools/blob/master/directives_test.go#L18-L22 https://github.com/bhoriuchi/graphql-go-tools/blob/master/directives_test.go#L47-L66 At its core it uses the same middleware...
Tests not passing, probably won't be merged till they do.
I don't know if this is still relevant to the thread but I've started working on implementing makeExecutableSchema from graphql-tools in go. https://github.com/bhoriuchi/graphql-go-tools