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
Trending in Questions
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
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
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
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
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
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
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
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
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
zachdaniel
What you’d need to do to expose custom filters is to add them as calculations. I realized
ash_json_apihad 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 onashmainbranch. I haven’t documented it, but honestly we need a whole guide on building filters from input. Given a calculation like this:filter[name_matches][input][search]=foowould do it, which is equivalent tofilter[name_matches][input][search]=true&filter[name_matches][eq]=true.gordoneliel
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
Hey @zachdaniel , following up on this. How do you hook up the calculation to a read action?
zachdaniel
Hook it up in what way? Calculations can be loaded, or they can be filtered on like attributes that kind of thing.
gordoneliel
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:
but gettin this error:
zachdaniel
Ah, right, so loading and filtering are unrelated.
gordoneliel
That worked! Another question on calculations…
Does this work on other calculated fields? For example, I have a
first_nameandlast_namefield, but afull_namecalculation. Do I have to store thefull_namefor this to work? Or can I compose thetrigram_similarityon 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
Calculations will work
However, you may find that you want to create some indexes on things like that.
gordoneliel
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:
And searched with:
When I get the full_name calculations working I’ll follow up in case anyone (or myself) needs this in the future

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