Skip to content

Instantly share code, notes, and snippets.

View onomated's full-sized avatar

Onome Ufomata onomated

View GitHub Profile
@onomated
onomated / query_builder.ex
Last active August 9, 2021 17:40
Override/expand elixir (QueryBuilder)[https://github.com/mathieuprog/query_builder] functionality to add app specific text search functionality
defmodule MyApp.QueryBuilder do
@moduledoc """
Convenience wrapper around `QueryBuilder` (https://github.com/mathieuprog/query_builder) module
that provides a few extra utilities
"""
require Ecto.Query
import MyApp.QueryFunctions
Module.register_attribute(__MODULE__, :search_fields, accumulate: true)