Arthur Welf
Arthur Welf
I think as a first step you can do it as web-service like for [JSON decoding](https://noredink.github.io/json-to-elm/). User posts GraphQL API endpoint and his query or mutation, the web-service sends an...
Can you please add a code example of how to deal with complex arguments like filtering? I've spent a lot of time reading docs but didn't realized what to do...
Wow! I've made it! 🥇 ``` import GraphQL.Request.Builder exposing (..) import GraphQL.Request.Builder.Arg as Arg import GraphQL.Request.Builder.Variable as Var exposing (Variable) ... mutualFollowersVar = Var.required "filter" .filterArg (Var.object "UserFilter" [ Var.field...
I have the same problem which I described here: https://github.com/atom-haskell/autocomplete-haskell/issues/8 It will be useful to have in settings checkbox "Don't show autocomplete for words used in comments only". It creates...
Please let define in `interface` various directives and all types which are implementing that interface should inherit all directives. For example: ``` interface Product @model { id: ID! @isUnique vendor:...
I use union types for every product category as they possess different properties. ``` union Product = Shoes | Dress | TShirt | Suit | ... ``` Without union types...
Why do we need to prefix endpoints with the `ledger_`? Why not to create a `/ledger` endpoint and get a function/method name from the JSON payload as per the JSON-RPC...
@HDauven All JSON-RPC block methods are implemented and their documentation in Wiki is updated. The same documentation is located in the `rusk/docs/JSON-RPC-block-methods.md` file. Implementation Plan in the PR description is...
> What's the rationale behind this? @HDauven asked me to propose RUES API to JSON-RPC API migration to implement it in the new `axum` based server. I've studied Ethereum and...
The ticket is blocked by [this missing feature](https://github.com/dusk-network/rusk/blob/c702841fab692fe5380f033f22ba402540bc38ab/node/src/chain/consensus.rs#L349): 