https://github.com/rupurt/juice
Reduce in memory data structures using a lightweight query language
https://github.com/rupurt/juice
elixir query
Last synced: 4 days ago
JSON representation
Reduce in memory data structures using a lightweight query language
- Host: GitHub
- URL: https://github.com/rupurt/juice
- Owner: rupurt
- License: mit
- Created: 2018-05-06T06:01:40.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-06-22T03:52:04.000Z (almost 5 years ago)
- Last Synced: 2025-03-30T20:33:38.837Z (about 1 month ago)
- Topics: elixir, query
- Language: Elixir
- Size: 28.3 KB
- Stars: 27
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Juice
[](https://github.com/rupurt/juice/actions?query=workflow%3Atest)
[](https://hex.pm/packages/juice)Reduce in memory data structures using a lightweight query language
## Installation
Add `juice` to your list of dependencies in `mix.exs`
```elixir
def deps do
[{:juice, "~> 0.0.3"}]
end
```## Usage
Juice can collect and reject string or atom keys from an Elixir [Map](https://hexdocs.pm/elixir/Map.html) or [List](https://hexdocs.pm/elixir/List.html).
Given the map
```elixir
iex> fruit_basket = %{
apples: {
granny_smith: 10,
golden_delicious: 3
},
"oranges" => 5,
plums: 6,
"mangos" => 2,
recipients: [:steph, "michael", :lebron, "charles"]
}
```Return everything with a wildcard `*`
```elixir
iex> Juice.squeeze(fruit_basket, "*") == %{
apples: {
granny_smith: 10,
golden_delicious: 3
},
"oranges" => 5,
plums: 6,
"mangos" => 2,
recipients: [:steph, "michael", :lebron, "charles"]
}
```Remove `plums` and `mangos`
```elixir
iex> Juice.squeeze(fruit_basket, "* -plums -mangos") == %{
apples: {
granny_smith: 10,
golden_delicious: 3
},
"oranges" => 5,
recipients: [:steph, "michael", :lebron, "charles"]
}
```Only collect `granny_smith` `apples` and `oranges` with nested `.` notation
```elixir
iex> Juice.squeeze(fruit_basket, "apples.granny_smith oranges") == %{
apples: {
granny_smith: 10,
},
"oranges" => 5
}
```Collect `plums` and `mangos` for `charles`
```elixir
iex> Juice.squeeze(fruit_basket, "plums mangos recipients.charles") == %{
plums: 6,
"mangos" => 2,
recipients: ["charles"]
}
```