outserv icon indicating copy to clipboard operation
outserv copied to clipboard

Blockchain Search with GraphQL APIs

Results 15 outserv issues
Sort by recently updated
recently updated
newest added

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.

enhancement
help wanted

https://github.com/outcaste-io/outserv/issues/61

enhancement
help wanted

We currently use Node.JS to run JS/TS scripts. Research if moving to Deno would make more sense.

help wanted

#61

enhancement
help wanted

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

enhancement

https://github.com/outcaste-io/outserv/issues/61

enhancement
help wanted

https://github.com/outcaste-io/outserv/issues/61

enhancement
help wanted

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

question