woylie
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries.
- offset-based pagination with
offset/limitorpage/page_size - cursor-based pagination
- sorting
- filtering
- parameter validation
- configurable filterable and sortable fields
- join fields
- compound fields
- query and meta data helpers
- Relay connection formatter (edges, nodes and page info)
- UI helpers and URL builders through Flop Phoenix.
Trending in Announcing
Hey everyone!
Req is an HTTP client for Elixir that I’ve been working on for quite some time. There is already a lot of HTTP clients out...
New
Samly can be used to enable SAML 2.0 Single Sign On in a Plug/Phoenix application.
This library uses Erlang esaml to provide
plug enabl...
New
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries.
offset-based pagination with...
New
I needed to reuse React components from my Chrome extension in my Phoenix/LiveView backend. I noticed that for Svelte/Vue, there are live...
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 all!
I want to present a small library which provides a mix task for generating an Entity-Relationship Diagram for Ecto schemas.
You...
New
Hello
Published a new library - ProcessHub!
ProcessHub is a library designed to manage process distribution within the Elixir cluster. ...
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
This showed up on my feed.. anyone heard of it? Just hype?
Ox Alpha is a reasoning model designed for coding, sustained ag...
New
It’s not that it’s vocabulary is too advanced. It’s something worse.
I get lost trying to follow even a paragraph written by Claude. It’...
New
Today we’re releasing Oban for Python. Not an Oban client in Python. Not a pythonx wrapper embedded in Elixir. Nope, it’s a fully operati...
New
@hugobarauna, Dr. Dimitrios Koutmos (my brother) and I (Alex Koutmos) have been hard at work on writing a book on how you can use Elixir ...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
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
- #elixirconf-us
- #blog-post
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Nefcairon
I found Flip and Flop_Phoenix a few days ago on GitHub and since then I’ve waited for this thread
Will definetly use it, very nice work
Is there a small demo project available? As a beginner this is the best way for me to learn how to use a library.
woylie
There is no demo project at the moment, but there are step-by-step instructions in the readmes. If something is unclear, let me know, so that I can improve the documentation
mayel
Nice work! Can it join+preload associations and filter using fields from associations? This seems to be what’s missing from many of the similar libs.
woylie
It can not add join expressions or preload data for you. Flop does not try to be an alternate query DSL - it just adds
WHERE,ORDER BYandLIMITclauses derived from user-generated parameters to existing Ecto queries.However, you can define join fields, which are basically a mapping from a field alias to a field name on a named binding (see join fields). You will have to ensure that the necessary named bindings are added to the Ecto query you pass to the Flop functions. This approach means that you can filter and sort by anything that Ecto allows to join on: not only associations, but also the results of subqueries. To avoid unnecessary joins, you can retrieve a list of necessary bindings for a given parameter map before building the query (see Flop.bindings/3).
bjuretic
Hi, just trying out your package, thanks for making it.
Is it possible (for me as a package user) to add a way to find out if there is more records, in cursor-based pagination?
Ideally I would like actually to know if there are records before the first and after the last entities (“page”) currently fetched.
That means running min/max postgres functions on the query, without LIMIT and sorting on it.
Any ideas are welcome, and it does not have to be super-optimized.
Thanks!
woylie
If you run a cursor-paginated query, Flop will make the query with the given limit + 1 (
first,last, ordefault_limit). The*runfunctions will remove the extra row from the result set. The returnedFlop.Metastruct hashas_next_page?orhas_previous_page?fields, where the value of one of the fields depends on the existence of the extra row, and the other one depends on the presence of aafterorbeforeparameter.bjuretic
Thanks. Is it possible to do a range/between filtering on the same field with this library? For example records between two dates.
woylie
Yes, filters are passed as a list, you can combine as many as you want, including ones on the same field. All filters are combined with a logical
AND. One thing that isn’t possible at the moment is combining multiple filters with a logicalOR. (If you want to filter a single string field, there areilike_orandlike_oroperators`, though.)brightball
Have you given any thought to including this approach for performance in a future release?
Otherwise, looks great!
woylie
That is already implemented! You can choose between offset-based and cursor-based pagination. See also:
Flop.Phoenix has two different UI components for offset-based and cursor-based pagination.