Christian Himpe

Results 151 comments of Christian Himpe

Hi, sorry I still cannot reproduce it. Using your command I get: Chrome: ![Image](https://github.com/user-attachments/assets/c452d90d-db72-4086-9a21-771fdb68f86e) Firefox: ![Image](https://github.com/user-attachments/assets/ae21d526-60d0-45b5-a330-b3571d0a98ae)

Seems like it. I am on MacOS. Let me try tomorrow on a Linux.

Tested on Ubuntu Firefox (Working) and Chromium (basically working). So this seems to be a Windows problem.

It seems the `astar` SQL function has the same / a similar problem. Note, `dijkstra` calls `astar`, see https://github.com/ArcadeData/arcadedb/blob/main/engine/src/main/java/com/arcadedb/query/sql/function/graph/SQLFunctionDijkstra.java#L48

The necessary changes look rather easy, every: ``` [ { lastItem.type = OrderByItem.DESC; }| { lastItem.type = OrderByItem.ASC; }] ``` would become ``` [ (|) { lastItem.type = OrderByItem.DESC; }|...

Once 4.0.0 is out, it is a good occasion to try to get SPARQL via Gremlin to work in ArcadeDB again.

This seems fixed by the latest changes.

It seems in studio, the table with id `result`, the `&` symbol is not escaped to `&` and thus not rendered correctly.

Further looking into this: The server returns the ampersand symbol as `\u0026` and this unicode entity for the ampersand symbol is rendered as whitespace. A simple `.replaceAll("\u0026","&")`(or variants thereof) in...

Hi, with regard to your question how the webUI (studio) gets all the info in one request: There is a special (undocumented) serializer called `studio`. Also, this issue: https://github.com/ArcadeData/arcadedb/issues/1590 may...