this works for me in gremlin console:

g.v('#11:999').out.in.has("@rid", "#11:541")


however this is failing in the studio! 
I think it is a casting problem (comparing ORecordid to the string string 
representation).

here is a workaround that worked in studio:

g.v('#11:999').out.in.filter{ it.id.toString() == "#11:541"}



On Friday, March 20, 2015 at 7:43:43 PM UTC-7, Natal Kaplya wrote:
>
> Trying to filter vertices in query pipeline like that:
> g.v('#11:999').out.in.has('id','#11:541') 
>
> But no results proceeded. The problem is inside 
> has('id','#11:541')
>
> Filter also fails:
> .filter{it.id == "#11:541"}
>
> Any help apprectiated! Thanks.
>

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to