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.