edgedb-ui
edgedb-ui copied to clipboard
The home of EdgeDB UI and all related shared UI components
Adding the ability to save an image of the schema visual representation in EdgeDB UI. Maybe through right-clicking on the schema image at the browser.
Example schema: ```edgeql module default { type A { multi b: B { constrain exclusive; on source delete delete target; }; } type B { required single link a :=...
- EdgeDB Version: CLI 2.0.4+a7fc49b - OS Version: macOS 12.0.1 (21A559) Steps to Reproduce: 1. Add a linked property to your schema. Run your migration and then refresh the EdgeDB...
Currently the lines/arrows are the same for links as for inheritance. It would be nice if those were distinct. It would also be nice if they were highlighted when the...
It would make testing out queries much simpler than the current state of having to manually type in a full explicit datetime string consisting of 26(!) characters every time you...
As I've been learning EdgeDB and EdgeQL and working with the EdgeDB UI, I've found that a number of my struggles boil down to data explorability. To this end, I've...
It's not clear to users what format they should use for durations in the UI, and it takes some trial and error to figure out which format works.  In...
Support transactions in the Query Editor. ```edgeql start transaction; select "hello world"; commit; ``` Currently, it fails with an error. ``` DisabledCapabilityError: cannot execute transaction control commands: disabled by the...
It would be great to have the ability to re-order the position of columns in the Data Explorer - in a similar manner to how most operating systems allow you...
It would be nice to scan the file system `**/*.edgeql` for queries and display them in the UI.