-
|
Hi! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Hi, We are still actively working on the documentation, the variable that you are looking for should be Kind regards, Stephane Begaudeau |
Beta Was this translation helpful? Give feedback.
-
|
I think it's not exposed at the moment. If you are in a context where you can add your own Java services, it should be possible write one which finds the element from the public EObject resolveTargetElement(Node selectedNode, IEditingContext editingContext) {
// You'll need to inject IObjectService in your service class's constructor
return this.objectService.getObject(editingContext, selectedNode.getTargetObjectId())).orElse(null);
}and then an expression like: |
Beta Was this translation helpful? Give feedback.


I think it's not exposed at the moment. If you are in a context where you can add your own Java services, it should be possible write one which finds the element from the
selectedNodewith something like:and then an expression like:
aql:selectedNode.resolveTargetElement(editingContext).