Skip to content

Instantly share code, notes, and snippets.

@drzippie
Last active November 26, 2015 13:36
Show Gist options
  • Select an option

  • Save drzippie/a9141708058960cde31a to your computer and use it in GitHub Desktop.

Select an option

Save drzippie/a9141708058960cde31a to your computer and use it in GitHub Desktop.
var c = { } ;
var x = graph.V("edu").In('in_sector').In('in_industry').Out('has_skill').Tag("id").ForEach(
function ( d ) {
if ( c[d.id] ) {
c[d.id] ++;
} else {
c[d.id] = 1 ;
}
d.count = c[d.id] ;
}
) ;
g.Emit( c ) ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment