outserv
outserv copied to clipboard
Blockchain Search with GraphQL APIs
There're a lot of subgraphs that are built for "The Graph". It would be great if we could write a script that can import them automatically to Outserv as well.
https://github.com/outcaste-io/outserv/issues/61
We currently use Node.JS to run JS/TS scripts. Research if moving to Deno would make more sense.
Outserv should allow caching the responses of a GraphQL query for a given TTL, specified in the schema. https://github.com/outcaste-io/outserv/issues/61
https://github.com/outcaste-io/outserv/issues/61
This product roadmap is based on the initial ideas during launch. As I get more feedback from users, this roadmap is bound to change. - Importers - [ ] Smart...
We directly parse GraphQL queries to the underlying query struct, but then convert it to DQL, before passing it to edgraph. Avoid that conversion to DQL step.
Example: ``` union TextContainer = Word | Phrase type Paragraph { id: ID! textContainers: [TextContainer] words: [Word!] @hasInverse(field: paragraph) phrases: [Phrase] @hasInverse(field: paragraph) } type Word { id: ID! text:...