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

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
kpanic
Hi everyone, I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding. I sta...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
velrest
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
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
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
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
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
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews