A query language parser for Ecto that converts human-readable filter strings into
Ecto WHERE clauses. Useful for building user-facing search and filtering
interfaces where the filter expression comes from a URL parameter, API request
body, or other untrusted text input.
iex> EctoQueryParser.apply(Post, ~s{status == "published" AND author.name contains "alice"})
{:ok, #Ecto.Query<...>}
Add ecto_query_parser to your list of dependencies in mix.exs:
def deps do
[
{:ecto_query_parser, "~> 0.1.0"}
]
end| Type | Examples |
|---|---|
| String | "hello", "with \"escapes\"" |
| Integer | 42, -7 |
| Float | 3.14, -0.5 |
| Boolean | true, false (case-insensitive) |
| List | [1, 2, 3], ["a", "b"] |
| Operator | Example | Description |
|---|---|---|
== |
age == 42 |
Equality |
!= |
status != "banned" |
Inequality |
>= |
age >= 18 |
Greater than or equal |
<= |
score <= 9.99 |
Less than or equal |
contains |
name contains "ali" |
Case-insensitive substring match (ILIKE) |
like |
name like "%ali%" |
SQL LIKE pattern |
ilike |
name ilike "%ALI%" |
SQL ILIKE pattern |
search |
body search "elixir programming" |
Splits into words and ANDs ILIKE matches |
includes |
tags includes "elixir" |
Array containment (= ANY(...)) |
Combine conditions with AND and OR (case-insensitive). Use parentheses for
grouping. AND binds tighter than OR.
name == "alice" AND age >= 18
role == "admin" OR role == "moderator"
(role == "admin" OR role == "moderator") AND active == true
Functions are case-insensitive and can be nested.
String functions:
| Function | Example |
|---|---|
UPPER(field) / TO_UPPER(field) |
UPPER(name) == "ALICE" |
LOWER(field) / TO_LOWER(field) |
LOWER(name) == "alice" |
TRIM(field) |
TRIM(name) == "alice" |
LENGTH(field) |
LENGTH(name) >= 3 |
LEFT(field, n) |
LEFT(name, 3) == "ali" |
RIGHT(field, n) |
RIGHT(name, 3) == "ice" |
SUBSTRING(field, start, len) |
SUBSTRING(name, 1, 3) == "ali" |
CONCAT(a, b, ...) |
CONCAT(first, last) == "alicebob" |
REPLACE(field, from, to) |
REPLACE(name, "alice", "bob") == "bob" |
COALESCE(field, default) |
COALESCE(name, "unknown") == "unknown" |
Math functions:
| Function | Example |
|---|---|
ABS(field) |
ABS(balance) >= 100 |
FLOOR(field) |
FLOOR(score) == 3 |
CEIL(field) |
CEIL(score) == 4 |
Date/time functions:
| Function | Description |
|---|---|
NOW() |
Current timestamp |
ROUND_SECOND(field) through ROUND_YEAR(field) |
Truncates to the given precision via DATE_TRUNC |
ADD_INTERVAL(field, interval) |
ADD_INTERVAL(created_at, "1 day") >= NOW() |
SUB_INTERVAL(field, interval) |
SUB_INTERVAL(created_at, "2 hours") <= NOW() |
The ROUND_* family includes: ROUND_SECOND, ROUND_MINUTE, ROUND_HOUR,
ROUND_DAY, ROUND_WEEK, ROUND_MONTH, ROUND_QUARTER, ROUND_YEAR.
Pass an Ecto schema module or an existing Ecto.Query along with a filter string:
# With a schema module
{:ok, query} = EctoQueryParser.apply(MyApp.Post, ~s{status == "published"})
Repo.all(query)
# Composing with an existing query
import Ecto.Query
base = from(p in MyApp.Post, select: p.title)
{:ok, query} = EctoQueryParser.apply(base, ~s{author.name == "alice"})
Repo.all(query)Dotted identifiers automatically resolve to LEFT JOIN clauses using the
schema's associations. Multiple references to the same association produce a
single join. Multi-level nesting is supported.
# Single join
{:ok, query} = EctoQueryParser.apply(Post, ~s{author.name == "alice"})
# Multi-level join
{:ok, query} = EctoQueryParser.apply(Post, ~s{author.company.name == "Acme"})
# Deduplication: only one join for author
{:ok, query} = EctoQueryParser.apply(Post, ~s{author.name == "alice" AND author.email contains "example"})When a dotted identifier refers to a :map field on the schema, it extracts the
value via json_extract_path instead of creating a join. Nested paths work too.
# Schema: field :metadata, :map
{:ok, query} = EctoQueryParser.apply(Post, ~s{metadata.category == "tech"})
# Generates: WHERE metadata#>'{category}' = 'tech'
# Nested path
{:ok, query} = EctoQueryParser.apply(Post, ~s{metadata.author.name == "alice"})For correct type casting on JSON values (required for numeric and boolean
comparisons), provide types via the keyword list format of :allowed_fields:
{:ok, query} = EctoQueryParser.apply(Post, ~s{metadata.view_count >= 100},
allowed_fields: [metadata: :map, "metadata.view_count": :integer]
)Use :allowed_fields to control which fields users can filter on. Two formats
are supported:
# Plain list: access control only
EctoQueryParser.apply(Post, query_string,
allowed_fields: [:name, :age, :"author.name"]
)
# Keyword list: access control + type casting for JSON paths
EctoQueryParser.apply(Post, query_string,
allowed_fields: [
name: :string,
age: :integer,
metadata: :map,
"metadata.key": :string,
"metadata.count": :integer
]
)Fields not in the list return {:error, "field not allowed: ..."}.
When working with a string table name instead of a schema module, you can define
associations directly in :allowed_fields:
import Ecto.Query
allowed = [
name: :string,
author: {:assoc,
table: "users",
owner_key: :author_id,
related_key: :id,
fields: [
name: :string,
email: :string,
company: {:assoc,
table: "companies",
owner_key: :company_id,
related_key: :id,
fields: [name: :string]}
]}
]
{:ok, query} = EctoQueryParser.apply(
from("posts"),
~s{author.company.name == "Acme"},
allowed_fields: allowed
)Association options:
:table(required) - target table name as a string:owner_key(required) - foreign key on the source table:related_key(required) - primary key on the target table:fields(optional) - keyword list of permitted fields, supports nesting
All errors are returned as {:error, reason} tuples:
{:error, "field not allowed: secret"}
{:error, "unknown field: nonexistent"}
{:error, "unknown association: nonexistent"}
{:error, "unknown function: bogus"}
{:error, "contains operator requires a string or identifier value, got: ..."}# Unit tests only (no database required)
mix test
# Start PostgreSQL for integration tests
docker compose up -d
# Run all tests including integration
mix test --include integration
# or
mix test.integrationIntegration tests execute every generated SQL query against a real PostgreSQL
database to verify correctness beyond what inspect(query) assertions can catch.
See LICENSE for details.