Greg MacWilliam
Greg MacWilliam
From discussion concerning merge package enum tools: > It appears that the enum type and value mergers are implemented with reversed argument order from each other. While the enum type...
@karibertils – sounds like you should just throw away `swagger-to-graphql` and build your own GraphQL schema with resolvers that wrap REST methods. While it's not auto-magical, it's going to server...
wellwuddayaknow. That works. Might have to explore an SDL wrapper around that pattern... a la `@key(selectionSet: "{ id }" @key(selectionSet: "{ upc }")`. Admittedly, formally supporting separate merge paths on...
Also, delegation planning is smart enough to still see those as the same schema, right? So requests are consolidated?
Indeed, my general thoughts as well.
FWIW, there’s a demo available in the schema stitching handbook that demonstrates how to do this using only present capabilities. https://github.com/gmac/schema-stitching-handbook/tree/master/type-merging-multiple-keys Note that SDL and static JavaScript config are not...
@alexandra-c I started [a branch for the SDL work](https://github.com/gmac/graphql-tools/compare/gm-multi-access-types...gmac:gm-multi-key-directives?expand=1) a few months back and got a ways into it, although nowhere near completion. It's definitely a tricky problem that takes...
@alexandra-c – multiple entry points PR has been merged and the feature is available in `[email protected]`. I've also updated the schema stitching handbook example, along with some information about working...
What happens if you define a fieldFilter that always returns true in addition to the typeFilter? It’s possible that it needs the fieldFilter present given the way all the filter...