New grouping support
* The new `add_parent_relationship_configuration(type, reverse)` allows to restructure relationships as nested hierarchy. For example, `(n:Person)-[r:COUNTRY]->(m:Country)` relations can be visualized as persons that are nested within their respective country.
* The new `parent_configuration` keyword argument for the `add_node_configuration(label, **kwargs)` allows to create artificial group nodes that are not part of the database.
You can find more details and examples in the [grouping.ipynb](https://github.com/yWorks/yfiles-jupyter-graphs-for-neo4j/blob/main/examples/grouping.ipynb) notebook.
* Fixed the bug that caused shared configuration among different widget instances (see 6)