This repository contains helper tools to convert EQL expressions to GraphQL strings.
(ns eql-graphql-demo
(:require
[edn-query-language.eql-graphql :as eql-gql]))
(eql-gql/query->graphql [{'(:user {:id 123}) [:id :name]}])
; query {
; user(id: 123) {
; id
; name
; }
; }
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close