dwyl / alog

🌲 alog (Append-only Log) is an easy way to start using the Lambda/Kappa architecture in your Elixir/Phoenix Apps while still using PostgreSQL (with Ecto).
GNU General Public License v2.0
15 stars 2 forks source link

get_by #7

Open Danwhy opened 5 years ago

Danwhy commented 5 years ago

We have a get function in this module, which allows us to fetch a record by entry_id, but no way to make a more complex query. We'll need to either replicate the Repo.get_by functionality and alter it to work with the append only log, accept complex queries, but nest them in a subquery such that they work with append only logs, or both.