[[:user
[[:id]
[:name]
[:profilePic {:size 300}]]]]
{
user {
id
name
profilePic(size: 300)
}
}
### Express GraphQL queries using clojure data structures. #### Example: #### HQL ```Clojure [[:user [[:id] [:name] [:profilePic {:size 300}]]]] ``` #### GRAPHQL ```Javascript { user { id name profilePic(size: 300) } } ```
(argmap->args args)
Takes a map and converts it into args Ex: {:id 10, :size 300} -> (id)
Takes a map and converts it into args Ex: {:id 10, :size 300} -> (id)
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close