moxley
I’m trying to query members that have all the given tag IDs. The code needs to dynamically build an expression like:
member.member_tags.tag_id = tag_id1
AND member.member_tags.tag_id = tag_id2
AND member.member_tags.tag_id = tag_id3
where tag_id1, tag_id2, and tag_id3 come in as a list.
I tried this:
Enum.reduce(tag_ids, query, fn id, query ->
Ash.Query.filter(query, exists(member_tags.tag_id == ^id))
end)
That results in:
[warning] `1b6d55b5-7d6a-478d-9872-86153c141ff0`: AshGraphql.Error not implemented for error:
** (Ash.Error.Query.NoSuchFunction) No such function exists for resource GF.Members.Member2
(elixir 1.16.1) lib/process.ex:860: Process.info/2
(ash 3.1.3) lib/ash/error/query/no_such_function.ex:5: Ash.Error.Query.NoSuchFunction.exception/1
(ash 3.1.3) lib/ash/filter/filter.ex:3311: Ash.Filter.resolve_call/2
(ash 3.1.3) lib/ash/filter/filter.ex:2513: Ash.Filter.add_expression_part/3
(ash 3.1.3) lib/ash/filter/filter.ex:2451: anonymous fn/3 in Ash.Filter.parse_expression/2
I tried playing with Ash.Expr.expr():
expression = Ash.Expr.expr(true)
Enum.reduce(tag_ids, expression, fn id, expression ->
Ash.Expr.expr(^expression and member_tags.tag_id == ^id)
end)
query = Ash.Query.filter(query, ^expression)
But the filter part of the query always came back as true.
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #elixirconf-us
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
sevenseacat
I think your first attempt was closer to the mark, but the syntax isn’t quite right.
The docs are a bit sparse, but looking at Aggregates — ash v3.29.3, I think something like
exists(member_tags, query: [filter: tag_id == ^id])might work?zachdaniel
Exists is a special case because it was a calculation before the exist aggregate was a thing.
Example here: Expressions — ash v3.29.3
moxley
I tried:
Which produced:
I tried:
It produced:
The documentation that @zachdaniel pointed to doesn’t cover the case where the record’s has_many relationship needs to match every value in a list.
Is there a solution for this?
zachdaniel
The
query: [filter: ....]variation won’t work. That is the syntax for inline aggregates, whereasexistsis special. The snippet I posed should work.The kind of query you are writing is, in general, not a very easy query to write. There are a few ways you could do it. Your first example was very close to correct
Using exists
Would do what you want. This will result in a rather large SQL query w/ an
EXISTSper tag_id you’re searching for (and would probably be fine in general).Using
count/2However, you could also do something like this which would result in joining once. Only works if your join resource is unique on
member_idandtag_id.And here you can see the syntax @sevenseacat was getting at in her first response. That syntax just happens to not apply to
exists/2You may want to profile/try each out to see how it performs in your use case.
moxley
They both worked!
I had to modify the second one, to add the
queryfirst argumentIndeed, the join table should be unique on Member and Tag, so this solution is probably better.