bus_car_dsl

A Domain Specific Language for composing ElasticSearch queries without all the nesting.


Keywords
dsl, elasticsearch, elixir
License
MIT

Documentation

BusCarDsl

Build Status

A Domain Specific Language for composing ElasticSearch queries without all the nesting.

Installation

The package can be installed by adding bus_car_dsl to your list of dependencies in mix.exs:

def deps do
  [{:bus_car_dsl, "~> 0.1.3"}]
end

Documentation can be found at https://hexdocs.pm/bus_car_dsl.

Examples

iex> BusCarDsl.parse([:query, :bool, :must, :range, "age", :gte, 18, :must_not, :match, "likes", "dogs", [boost: 2.0], :fuzzy, "name", "jason", [fuzziness: 2]])
%{query: %{bool: %{must: [%{range: %{"age" => %{gte: 18}}}],
      must_not: [%{fuzzy: %{"name" => %{fuzziness: 2, value: "jason"}}},
       %{match: %{"likes" => %{boost: 2.0, query: "dogs"}}}]}}}