Popularity
3.1
Stable
Activity
0.0
Stable
131
20
12

Code Quality Rank: L5
Programming language: Clojure
License: MIT License
Tags: Microservice    
Latest version: v3.8.1

restQL-core alternatives and similar libraries

Based on the "Microservice" category.
Alternatively, view restQL-core alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of restQL-core or a related project?

Add another 'Microservice' Library

README

restQL-clojure allows to run restQL queries, making easy to fetch information from multiple services in the most efficient manner

Getting Started

Installation

Add restQL dependency to your project

Lein

[b2wdigital/restql-core "3.4.1"]

NPM

npm i @b2wdigital/restql

First query

Clojure

(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" } )

Node

var restql = require('@b2wdigital/restql')

// executeQuery(mappings, query, params, options) => <Promise>
restql
  .executeQuery(
    {user: "http://your.api.url/users/:name"},
    "from user with name = $name",
    { name: "Duke Nukem" })
  .then(response => console.log(response))
  .catch(error => console.log(error))

In the example above restQL will call user API passing "Duke Nukem" in the name param.

Our query language

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

Links

Reach the community

Who's talking about restQL

License

Copyright © 2016-2019 B2W Digital

Distributed under the MIT License.


*Note that all licence references and agreements mentioned in the restQL-core README section above are relevant to that project's source code only.