// calculate the primary eigenvector (eigenvector centrality) of a graph
m = [:]; c = 0;
g.V.as('x').out.groupCount(m).loop('x'){c++ < 1000}
m.sort{-it.value}Above there is the gremlin statements in order to calculate eigenvector. I should use it in c# but the c# driver does not support multiple gremlin statements. How can i calculate eigenvector using sql statements? Thanks Giancarlo -- --- 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.
