restQL-clojure allows to run restQL queries directly in the JVM, making easy to fetch information from multiple services in the most efficient manner
Add restQL dependency to your project
Lein
[b2wdigital/restql-core "2.4.0"]
(require '[restql.core.api.restql :as restql])
(restql/execute-query :mappings { :user "http://your.api.url/users/:name" } :query "from user with name = $name" :params { :name "Duke Nukem" } )
In the example above restQL will call user API passing "Duke Nukem" in the name param.
The clause order matters when making restQL queries. The following is a full reference to the query syntax, available clauses and order.
[ [ use modifier = value ] ]
METHOD resource-name [as some-alias] [in some-resource]
[ headers HEADERS ]
[ timeout INTEGER_VALUE ]
[ with WITH_CLAUSES ]
[ [only FILTERS] OR [hidden] ]
[ [ignore-errors] ]
e.g:
from search
with
role = "hero"
from hero as heroList
with
name = search.results.name
Learn more about restQL query language
Copyright © 2016-2019 B2W Digital
Distributed under the MIT License.
Can you improve this documentation? These fine people already did:
ricardoekm, Iago Oliveira, Thúlio Costa, Ricardo Mayerhofer, Lucas Barros, Iago Oliveira da Silva, Jeferson Leao, Jeferson Sanches, sio-iago & André ClaudinoEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close