Entity setup
Running queries
The query editor uses CodeMirror5 for code highlighting and autocomplete.No customization is installed, meaning we can not use {} for entity names. In queries, use @EntityName in stead of {EntityName}
CTRL-Enter executes the query
Queries are executed within a WITH (@Query) ... clause to enable returning of data to the frontend in JSON format. If you need to update or delete data (think twice!, no rollbacks!) you can use Run Raw to directly execute the query. In that case, no results are returned.
AGGrid (community) is used for displaying the results enabling sorting, filtering etc.
Results can be exported to xlsx. All processing of query results happens client side.