block by micahstubbs 8a3779fc211b45ef9744100d1307f0fa

d3 example graph search - user query

Full Screen

This iteration add an interaction that opens the block represented by a node when you click on that node

In this iteration, we load json data from a static file. This json data is produced by the REST API of a neo4j graph database that contains the d3 example README citation graph, in response to a query that we post to it.

This query finds all of the blocks from user enjalot that mention blocks or are mentioned themselves. Then, we show those blocks as well as all 1st degree connections

MATCH(n)-[:LINKS_TO]-(m)
 WHERE n.user =~ '.*enjalot.*'
 RETURN n, m

see also

the parent project for blockbuilder graph search ui prototypes
https://github.com/micahstubbs/bbgs-ui-prototypes

the blockbuilder graph search neo4j graph database source data & config backend project https://github.com/micahstubbs/blockbuilder-graph-search-index

index.html

forceInABox.js

jsLouvain.js

vis.js