moxley

moxley

Build Ash.Query dynamically from other Ash.Query structs

I’m building a module that builds up an Ash.Query from parameters. I want it to be able to “OR” two queries together, like this:

left_query = build_query(Member2, left_params)
right_query = build_query(Member2, right_params)

query = Ash.Query.filter(Member2, ^left_query or ^right_query)

But this doesn’t work. The resulting query is:

#Ash.Query<resource: Member2, filter: #Ash.Filter<true>>

This will always return all records.

How do I correctly compose a query from other queries?


Additionally, I don’t know what an Ash.Filter is. The full description in the documentation is “The representation of a filter in Ash.” I don’t know how Ash.Filter relates to Ash.Query. They seem to be related, but the documentation doesn’t appear to mention how they relate. There is no section in the Ash HQ Tutorials for Ash.Filter or Ash.Query.

The intro documentation for Ash.Filter includes this example:

Ash.Query.filter(resource, name == "Zardoz")
Ash.Query.filter(resource, first_name == "Zar" and last_name == "Doz")
Ash.Query.filter(resource, first_name == "Zar" and last_name in ["Doz", "Daz"] and high_score > 10)
Ash.Query.filter(resource, first_name == "Zar" or last_name == "Doz" or (high_score > 10 and high_score < -10))

There is another example of Ash.Query.filter() further down, but no explanation of the relation between Ash.Query and Ash.Filter.

Ash.Query.filter() returns an %Ash.Query{} struct, not an Ash.Filter. The documentation for Ash.Query.filter() contains the sentence “The filter is applied as an “and” to any filters currently on the query. For more information on writing filters, see: Ash.Filter.”. So the documentation says there’s is a link between the two modules, but doesn’t explain how, or what that link is.

Marked As Solved

zachdaniel

zachdaniel

Creator of Ash

Hey there! Sorry it took a while to get back to you. In Ash, we compose “expressions” to do this kind of building, as opposed to composing full queries. For example:

import Ash.Expr

defp build_filter(map) do
  Enum.reduce(map, true, fn {key, value}, acc -> 
    expr(^acc and ^ref(:field) == ^value)
  end)
end

Then you could or these together with

left_filter = build_filter(left_params)
right_filter = build_filter(right_params)
filter = expr(^left_query or ^right_query)

Ash.Query.filter(query, ^filter)

With that said, Ash also has a thing for this. It is missing some docs on the exact format accepted, but that is just elbow grease to be applied:

{:ok, filter} = Ash.Filter.parse(Resource, %{or: [%{a: 1}, %{b: 2}]})
# or even more succinctly
Ash.Query.filter_input(query, %{or: [%{a: 1}, %{b: 2}]})

So if you can use our format for filters, then you should do that, but if not then you’d build your own with expressions.

Also Liked

zachdaniel

zachdaniel

Creator of Ash

As for the documentation for that input format, I intend to document it very soon. It needs to have a json schema because it is the same format as the one use in AshJsonApi’s filter query parameter.

Where Next?

Popular in Questions Top

ovidiubadita
Hey all, I discovered Elixir and I love it. I always wanted to learn a functional programming and I intended to go for Haskell, but afte...
New
lanycrost
Hi everyone! I need implement if…else if…else condition from my elixir code, and anymore of this control flow structures not work proper...
New
ashish173
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
marius95
Hello everyone, I try to use an Javascript Event Handler in my root.html.leex file. Therefore I created a function in the app.js file: ...
New
fayddelight
I tried installing elixir 1.11.2 erlang 23.3.4 via asdf in my zsh shell. Enabled the versions locally and globally. When I list them ...
New
JorisKok
I have a server on AWS, and was running a load test using artillery. When looking at the Phoenix dashboard I see the Ports going to 100% ...
New
senggen
Erlang/OTP 25 [erts-13.2.2] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] 15:22:35.803 [error] gen_event {lager_file_backend...
New

Other popular topics Top

minhajuddin
I have seen a lot of code which picks the first element from a list using Enum.at(0) instead of List.first. Is there a reason why people ...
New
jononomo
I am trying to figure out how Mix knows whether the environment is test, dev, or prod – where is this set? Thanks.
New
hariharasudhan94
Lets say I have map like this fetching from my database %{"_id" =&gt; #BSON.ObjectId&lt;58eb1a7a9ad169198c3dXXXX&gt;, "email" =&gt; ...
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
shijith.k
I am trying to start a new phoenix project with elixir 1.9, but mix phx.new does not work. It says that ** (Mix) The task "phx.new" could...
New
SoCreat
i’m a new one to elixir which editor can i use vs code? or atom? Thanks! :smiley:
New

We're in Beta

About us Mission Statement