Using the System stored variables owner in OQL query

0
Hi ,  I am trying to fetch the name of the owner (which is the system stored variable) in my OQL query statement . Could someone please help me with this. Thanks in advance!  
asked
1 answers
2

Something like this:

SELECT owner/Name

FROM YourModule.Entity alias

LEFT OUTER JOIN alias/System.owner/System.User owner

LIMIT 10

 

answered