Aviv Rozenboim
Aviv Rozenboim
Stitch uses federation internally, but currently can't be federated to. We should make it federation-compliant so that it can be a part of a larger federation "network"
I think a kind of `@cache(maxAge: '12h')` directive makes a lot of sense for agogos as an API gateway, it could also respect HTTP `Cache-Control` headers for example. There's some...
Currently we only support Active Directory, stitch should support Basic authentication and and generic oauth2 at least
IMO it makes a lot of sense for agogos to have plugin support, probably mostly for custom directives. To properly support plugins, we should come up with a way to...
We should support subscriptions. We will need a use case first, since it can be done a few different ways, so maybe there are different implementations that can be used...
Agogos has enough schema information to be able to avoid requesting data it does not need in the case of nested resolvers. For example, consider this schema: ```graphql type User...
We can integrate something like facebook's `dataloader` library (there's an unofficial [golang version](https://github.com/graph-gophers/dataloader)) Maybe by introducing a `@batchable` directive with instructions on how to batch the requests
Maybe look into TCP congestion/flow control algorithm like TCP Slow Start to implement a better backpressure algorithm?
## Problem When running for the first time, we only update the cursor but don't create the initial row, so it doesn't update anything. ## Solution Changed the update to...