Replies: 2 comments
-
Not that I know of, but you should be able to retrieve LINKs by accessing properties of documents returned by a query. |
Beta Was this translation helpful? Give feedback.
-
Once you have a document, you can cross the links with the Java API with something like: Document employee; // GET THE DOCUMENT IN SOME WAY
String name = ((Identifiable) employee.get("city")).asDocument().getString( "name" ); Maybe we could provide a new API to do the job, like: String name = employee.query("sql", "city.name")); In practice, the |
Beta Was this translation helpful? Give feedback.
-
I know it is possible to use the dot notation to resolve a LINK using the SQL API, e.g.
SELECT * FROM Employee WHERE city.name = 'Rome'
.I was wondering if it is possible to do the same thing using the Java API?
Beta Was this translation helpful? Give feedback.
All reactions