Query regarding features support. #4601
jenish2014
started this conversation in
General
Replies: 1 comment 5 replies
Use
EdgeDB implements the majority of commonly used Postgres functions (thought the names can be different). User-defined functions are also supported.
EdgeDB does not implement query result caching at the moment.
EdgeDB implements server-side parameter binding which is immune to injection vulnerabilities by design.
Basic partitioning can be implemented with
CTE == Materialized views are not supported yet.
❤️ |
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
First of all Thank you, to the creators of EdgeDB. I've started using it in my personal projects and it has improved development experience by many fold.
I apologize in advance if any of these questions has been asked. I didn't encounter any of these queries while searching.
My query is, weather EdgeDB supports below features or will it support in future:
Intermediate table in Many-to-Many relations like in Django where, through-model in M2M has fields.
Postgresql has plethora of functions for myriad of use cases. Now EdgeDB may not implement all of them, So, is there going to be support for custom function where developer can add these function as they need on there own? e.g: Django provides custom lookup.
Query and Result Caching.
Input Sanitization or escaping untrusted Data.
Window Function, Partition and Ranking.
CTE, Views and Materialized Views.
Again, Thank you for creating EdgeDB it is a wonderful piece of Software.
All reactions