-
-
Notifications
You must be signed in to change notification settings - Fork 17
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 custom SQL field for Views #18
Comments
So would a custom additional field to the SELECT portion of the query enough or do you want to du custom joins also? |
There is also something experimental called Transformers, that I added for a custom use-case. These do not create a new field, but 'transform' an existing, e.g. filtering or aggregating a list, performing a calculation etc. |
So for my specific use case it would be more a
I would like to be able to do something like:
Something like this. Transformers looks interesting also :D |
But cant you do the where using the QueryParams object? |
I can but I'll have to think of adding it in all QueryParams of the projects where by doing it here it's once for the all project and all queryparam I'll do would be about business logic and not about making the date lighter |
My use case here is that I have a huge table with billions of entries. To improve a bit performance I want a view with let say the data since two years only. By allowing a custom field where I can add a custom SQL I would be able to do that.
Hope that's clear enough ^^ or let me know
The text was updated successfully, but these errors were encountered: