Adam Sven Johnson
Adam Sven Johnson
@yaronp are you using kubernetes or another orchestrator? On our kubernetes setup we have a ConfigMap that contains the configuration files, we mount this as a volume into the container...
It looks like adding the [`MultipartForm`](https://github.com/99designs/gqlgen/blob/master/graphql/handler/transport/http_form.go) transport to [`gateway.go`](https://github.com/movio/bramble/blob/main/gateway.go#L39) will be needed
For things like `PageInput` I think the ability to have a shared bit of schema that you could include would help. It also needs the ability to be defined in...
Yeah having the same directive is a good idea I think, since the semantics are essentially the same. There's two things here, we want to be able to have `scalar`s,...
My reasoning is there is already quite a bit of boilerplate that needs to be included in each service to join the gateway. eg. ```graphql directive @boundary on OBJECT directive...
Summary from IRL discussion: We decided for our use case we could handle the downtime of removing some services from the gateway and rolling out schema updates in a co-ordinated...
@gmac wouldn't disallowing divergence in Input objects also making rolling out changes to the object one service at a time difficult. Our current plan is removing the affected services and...
@sodabrew that is the idea, at Movio we already have a separate `main.go` that loads in some extra plugins which is essentially this: ```golang package main import ( "github.com/movio/bramble" _...
Hi @benzolium we're using the [graphql-go](https://github.com/graph-gophers/graphql-go) library to parse GraphQL. I did a quick search of the library and can't find any support for the directive yet. We're at v1.3.0...
@benzolium I see you've already got support merged in to the gophers library 💯 , I'll try out the head and we'll update when they release.