lardcanoe

lardcanoe OP

I am trying to parse a user generated filter that will apply to jsonb field (that is just a map, not an embedded resource).

The field is data, and if I include it in the statement sent to parse_input I get an Ash.Error.Query.NoSuchFilterPredicate error.

If I exclude that field, and instead manually apply it, |> Ash.Query.filter(data[:size] == ^"Big") then things works.

Is there a syntax to allow passing fields of a map into the parse function? If not, how can I pass it to Ash.Query.filter? To make it slightly more complicated, I would also like to be able to filter on the data field when it is on a reference as well. e.g. `%{person: %{data: %{size: “Big”}}}

    statement = %{
      person: %{parent: %{name: "Daniels"}},
      data: %{size: "Big"}
    }

    # This will blow up with the above
    {:ok, filter} = Ash.Filter.parse_input(resource, statement)

    # If I remove "data" and instead do it manually, then this works:
    resource
    |> Ash.Query.for_read(read_action, %{}, actor: actor, tenant: tenant)
    |> Ash.Query.filter_input(filter)
    |> Ash.Query.filter(data[:size] == ^"King")

Filtering on embedded resource? - #6 by zachdaniel was where I saw the Ash.Query.filter approach on arbitrary fields of a jsonb attribute; I just couldn’t figure out how to pass my user generated filter since that is a macro.

Thank you!

First 10 of 10 Posts Switch mode

zachdaniel

zachdaniel

Creator of Ash

I think this is actually something missing from Ash.Filter, specifically when given a nested map like that we should check for embedded resources and allow you to apply that kind of filter. Could you open an issue for it in Ash?

Another way to achieve this kind of thing is to add calculations to the root resource, i.e


```elixir
calculate :size, :string, expr(data[:size])

and then allow filtering on :size. Not a feasible option for every case though.

lardcanoe

lardcanoe OP

Created Filter a map attribute using user input · Issue #862 · ash-project/ash · GitHub

The size filter was just an example, it could be any field, and deeply nested. Basically, that data field maps to a JSON schema that is defined at runtime. I hacked together an approach using fragments that works fine until you join another table that also has a data field, and postgres has the ambiguous error. I saw in another post using an as(0) notation, but that seems hokey for my case and also wasn’t sure how to in the fragment.

There is no “hidden” method I can call that replicates what Ash.Query.filter(data[:size] == ^"King") is doing? Because I am fine breaking out the data filters into another approach while keeping parse_input for the pre-defined attributes.

zachdaniel

zachdaniel

Creator of Ash

There are definitely ways to build the filter yourself and to dynamically build references that won’t bring on the ambiguous references that you mentioned, i.e a simplified thing

require Ash.Expr

...
map
|> Enum.reduce(true, fn {key, value}, expr -> 
  Ash.Expr.expr(ref(^key) == ^value) and ^expr)
end)

This can be adapted to support nested keys and to do things like get_path(ref(^key), ^list_of_keys) == ^value).

However, I’ve just pushed support for doing this automatically with non-array embedded types in input filters to ash main. Keep in mind there is still some experimental stuff in main, and if you want to use it you should also upgrade ash_postgres to latest main as well.

lardcanoe

lardcanoe OP

You’re a machine! :joy: What cup of coffee are you on?

I pulled main for ash and ash_postgres and it had the same error.

I think your new code worked because the attribute is defined as attribute :embedded_bio, EmbeddedBio and not attribute :embedded_bio, :map

I hacked up my own embedded resource and attached it to my data field and the code works. But I need it for a generic :map

Sorry for the bad news :frowning:

I don’t want to abuse you, so I’ll reopen the github issue and get to it when you can. Thanks!

zachdaniel

zachdaniel

Creator of Ash

Ah :thinking: so, this is a bit harder. The reason for that is that you can use a predicate %{data: %{eq: 10}}, and we can’t tell if you mean data.eq == 10 or data == 10. The format is, unfortunately, a bit ambiguous. We’d have to figure something else out to for this. :thinking:

EDIT: to make it clear, you can use all kinds of predicates, like %{data: %{less_than: 10}}

zachdaniel

zachdaniel

Creator of Ash

I’m thinking what we need to do actually is walk back the previous change, and introduce a new syntax for including paths in input. Perhaps something like this:

%{data: %{at_path: ["foo"], eq: 10}} 
zachdaniel

zachdaniel

Creator of Ash

So, I made that change and realized that it just kind of shuffles the problem around, because if you have an attribute called at_path it would be problematic…but actually I think it’s fine. The reason its fine is that at_path expects a list, and if you need to match on it you can say at_path: %{eq: ["foo"]}, so there is an escape hatch (albeit a bit of a convoluted one)

zachdaniel

zachdaniel

Creator of Ash

Alright, I’ve pushed this change to main (and removed the previous change I added)

lardcanoe

lardcanoe OP

(edit: replied before seeing your new change. let me do that first)

Can you see in the filter logic that data is an Ash.Type.Map so any condition being applied to it would actually be for fields in the map?

For your example, I wasn’t sure how to use it.

    resource
    |> Ash.Query.for_read(read_action, %{}, actor: actor, tenant: tenant)
    |> Ash.Query.filter_input(filter)
    |> Ash.Query.filter(
      Enum.reduce(%{size: "King"}, true, fn {key, value}, expr ->
        Ash.Expr.expr(get_path(ref(:data), ^key) == ^value and ^expr)
      end)
    )

Do you have a more complete example of using Ash.Expr.expr because elixir ain’t happy with that. Can’t find key, value, expr.

zachdaniel

zachdaniel

Creator of Ash

Can you see in the filter logic that data is an Ash.Type.Map so any condition being applied to it would actually be for fields in the map?

This covers the case a little bit, but there can also be custom types that are backed by maps, and we can’t detect them all.

Do you have a more complete example of using Ash.Expr.expr because elixir ain’t happy with that. Can’t find key, value, expr.

You need to require Ash.Expr because Ash.Expr.expr is a macro.

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
bottlenecked
Hi all, I wanted to ask how the community is dealing with post-release steps. Today we have Ecto migrations, which make sure that the db...
New
roeland
Kia ora, We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
michallepicki
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
type1fool
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New

We're in Beta

About us Mission Statement