retro / graphql-builder

GraphQL client library for Clojure and ClojureScript
MIT License
184 stars 15 forks source link

specifying constant arguments inline not working #1

Closed Sohalt closed 7 years ago

Sohalt commented 7 years ago

I cannot specify an argument directly in the query (i.e. not via a variable). For example a query of the form:

query Foo {
  bar(baz:{quux:42}) {
    xyzzy
  }
}

breaks.

If I send the query with curl it works just fine.

retro commented 7 years ago

I've released 0.1.4 which fixes this bug.

Sohalt commented 7 years ago

That was quick. Thank you!