gordoneliel

gordoneliel

Hi!

I’m trying to filter by similarity eg, name like “eliel” where name could be “Eliel Gordon”.
Is there a way to do this with the filters on ash_json_api or do I have to create my own custom query to handle this?

So far trying filter[name]=eliel only does exact matches

Showing Posts 1 to 10

zachdaniel

zachdaniel

Creator of Ash

What you’d need to do to expose custom filters is to add them as calculations. I realized ash_json_api had no good way to accept calculation inputs, so I’ve added it as an available key when building a filter from input on a field. This is currently on ash main branch. I haven’t documented it, but honestly we need a whole guide on building filters from input. Given a calculation like this:

calculate :name_matches, :boolean, expr(trigram_similarity(name, ^arg(:search)) > 0.7) do
  argument :search, :string, allow_nil? false
end

filter[name_matches][input][search]=foo would do it, which is equivalent to filter[name_matches][input][search]=true&filter[name_matches][eq]=true.

gordoneliel

gordoneliel OP

Yeah I often get lost when trying to figure out how to query/filter from json_api in general, the spec isn’t detailed enough either so it makes it really difficult.

gordoneliel

gordoneliel OP

Hey @zachdaniel , following up on this. How do you hook up the calculation to a read action?

zachdaniel

zachdaniel

Creator of Ash

Hook it up in what way? Calculations can be loaded, or they can be filtered on like attributes that kind of thing.

gordoneliel

gordoneliel OP

I mean I have first_name and last_name fields, I would like to perform the similarity search you have above in a read action.

I tried loading it with this read action:

    read :search_by_name do
      argument :name, :string, allow_nil?: true

      prepare build(load: :name_matches)
    end

but gettin this error:

{ :error, %Ash.Error.Invalid{errors: [%Ash.Error.Query.InvalidCalculationArgument{calculation: :name_matches, field: :name, message: "is required", value: nil, changeset: nil, query: nil, error_context: [], vars: [], path: [:load], stacktrace: #Stacktrace<>, class: :invalid}], stacktraces?: true, changeset: nil, query: #Ash.Query<resource: IdentityService.Organizations.Organization, arguments: %{name: "Blue"}, errors: [%Ash.Error.Query.InvalidCalculationArgument{calculation: :name_matches, field: :name, message: "is required", value: nil, changeset: nil, query: nil, error_context: [], vars: [], path: [:load], stacktrace: #Stacktrace<>, class: :invalid}]>, error_context: [nil], vars: [], path: [], stacktrace: #Stacktrace<>, class: :invalid}
  }
zachdaniel

zachdaniel

Creator of Ash

Ah, right, so loading and filtering are unrelated.

read :search_by_name do
  argument :name, :string, allow_nil?: true

  filter expr(name_matches(name: arg(:name)))
end
gordoneliel

gordoneliel OP

That worked! Another question on calculations…

Does this work on other calculated fields? For example, I have a first_name and last_name field, but a full_name calculation. Do I have to store the full_name for this to work? Or can I compose the trigram_similarity on multiple fields?

As far as I remember, the trigram similarity works by creating trigrams of the stored fields? Not sure if calculations would work here

zachdaniel

zachdaniel

Creator of Ash

Calculations will work :slight_smile: However, you may find that you want to create some indexes on things like that.

gordoneliel

gordoneliel OP

Thanks @zachdaniel. I wasnt able to get it to work on the full name field with calculations yet (search results were off/ not showing up), but I added this index:

    custom_statements do
      statement :account_name_gin_trigram_index do
        up "CREATE INDEX account_name_gin_trigram_index ON accounts USING gin ((first_name || ' ' || last_name) gin_trgm_ops)"
        down "DROP INDEX account_name_gin_trigram_index"
      end
    end

And searched with:

  calculations do
    calculate :name_matches,
              :boolean,
              expr(
                trigram_similarity(first_name, ^arg(:name)) > 0.3 or
                  trigram_similarity(last_name, ^arg(:name)) > 0.3
              ) do
      argument :name, :string, allow_nil?: false
    end
  end

When I get the full_name calculations working I’ll follow up in case anyone (or myself) needs this in the future :slight_smile: :laughing:

zachdaniel

zachdaniel

Creator of Ash

Interesting…what happens when you do it with the full name field? Do you get an error?

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
Blokh
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
kszambelanczyk
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
Onor.io
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
jaybe78
Hello, I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter). The diffic...
New
Trolleger
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
widianto
I think I’ve found a small improvement I could contribute to &lt;%= web_namespace %&gt;.CoreComponents (installer/templates/phx_web/compo...
New

Other Trending Topics Top

garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; 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
wintermeyer
There are three potential reasons for members of this forum to have a look at https://vutuv.de You are tired or annoyed of LinkedIn. Yo...
New
aseigo
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews