ash-project / ash_json_api

The JSON:API extension for the Ash Framework
https://hexdocs.pm/ash_json_api
MIT License
63 stars 42 forks source link

Support nested boolean filters #21

Closed zachdaniel closed 4 years ago

zachdaniel commented 4 years ago

We can support boolean filters with nested statements like:

{
  "or": [
    {"name": "zach"},
    {"and": [
      {"foo": 1},
      {"bar": 2}
    ]}
  ]
}
zachdaniel commented 4 years ago

This is supported