This endpoint takes a solr query (q parameter and optionally fq, start, rows, and max_groups) and returns json.
If there are fewer than 50 nodes, the json structure is simply a graph of author nodes
and their linkages.
Otherwise two graphs are returned : a "fullGraph" that has all node-link information for the nodes
that were successfully categorized into groups, and a "summaryGraph"
that summarizes the graph into groups.
You can add a max_groups parameter to limit the number of groups returned -- note this isn't taken into account
by the algorithm that generates the groups, it just limits the amount of information you will receive back.
This endpoint is very similar to the author network, with nodes representing individual papers and links representing references that these nodes have in common.
The implementation is different in that summary groups are titled with word clouds of the titles of the papers that are members of the group, while in the author network the title is just a list of the most common authors.