orientdb - The command has not been executed - Republicated With New Informations - MATCH Clause -


i have orientdb database 2 vertex

pesquisador 1 million records

publicacao 1 million records too

and edge colabora_com 6,239,382

i need select thousand researchers highest number of publications.

i execute command

    select  psq1.psq_nome nomepesquisador, count(pub1) qtdpub     (       match          {class:pesquisador, as:psq1}.oute("publicou").inv(){as:pub1}       return psq1, pub1     )     group psq1     order qtdpub desc, nomepesquisador     limit 1000; 

then there error "the command has not been executed"

but if execute query

    select ordem, out.psq_nome, out.psq_data_nascimento     publicou      in.pub_id = 5022     order ordem; 

the query execute ok

is there error of memory match?

should change memory settings?


Comments