-
Notifications
You must be signed in to change notification settings - Fork 284
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add between method to expression builder #602
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was praying and hoping for this day to come. 😄
My beloved between
!!!! ✨
Looks good to me! 🚀
One thing to consider, PostgreSQL supports a between symmetric
that should be a great QoL solution (no need to compare inputs before querying).
How would we tackle this? maybe..
eb.betweenSymmetric(expr, start, end)
// or
eb.between(expr, start, end).symmetric()
Maybe |
Yeah, seems like an easy win. |
The only reason I was against |
is this published yet? |
@frencojobs release pending. |
I hope we get this. 😁 |
* add between method to expression builder * add betweenSymmetric method to expression builder
Don't know if this is a good DX. Feel free to shoot this down.