lilo
lilo copied to clipboard
Lilo is a super-fast, easy-to-use, configurable GraphQL stitching library
Given: ``` Slf4j @Controller public class Router { private final Lilo lilo; public Router() { this.lilo = Lilo.builder() .addSource(RemoteSchemaSource.create("server1", "http://localhost:8081/graphql")) .addSource(RemoteSchemaSource.create("server2", "http://localhost:8082/graphql")) .build(); log.info("Router created"); } @ResponseBody @PostMapping("/graphql") public Map...
In braid, there is a namespace concept. This will make possible to define graphql query with same name to be created in different microservices. Similarly, the schema in lilo should...
Thanks for the wonderful library. Does lilo provides support for linking types from different sources as in Braid? if yes how? i couldnt find any example. Source : https://bitbucket.org/atlassian/graphql-braid/src/master/ A...