You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have this model :
Unit <- Person(pds) -> profession
(246515 vertex) <- (661491 V) -> (68 V)
A Unit is linked to less than 5 person.
We want to find the person for a specialty and a profession. For both, we have the id.
This request is very slow (7 seconds) :
MATCH
{class:pds, as:pds}.out('has_punit'){class:unit, where : (@Rid = #104:11482)},
{as:pds}.out('has_pprofession'){class:profession, where : (@Rid = #81:0)}
RETURN pds
In the documentation : change this: select from Profile where @Rid = #10:44 with this: select from #10:44
Question
Is it possible to use record ID as target in a Match query ?
The text was updated successfully, but these errors were encountered:
OrientDB Version: 2.2.26
Java Version: 7
OS: WINDOWS
Actual behavior
We have this model :
Unit <- Person(pds) -> profession
(246515 vertex) <- (661491 V) -> (68 V)
A Unit is linked to less than 5 person.
We want to find the person for a specialty and a profession. For both, we have the id.
This request is very slow (7 seconds) :
MATCH
{class:pds, as:pds}.out('has_punit'){class:unit, where : (@Rid = #104:11482)},
{as:pds}.out('has_pprofession'){class:profession, where : (@Rid = #81:0)}
RETURN pds
In the documentation : change this: select from Profile where @Rid = #10:44 with this: select from #10:44
Question
Is it possible to use record ID as target in a Match query ?
The text was updated successfully, but these errors were encountered: