lilo icon indicating copy to clipboard operation
lilo copied to clipboard

Lilo is a super-fast, easy-to-use, configurable GraphQL stitching library

Results 4 lilo issues
Sort by recently updated
recently updated
newest added

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...

Supporting end to end graphql subscription.

enhancement

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...

enhancement

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...