Is the idea that you want to return all incoming and outgoing relationships of a node (person?), and all related nodes of any group of which a person is a member? So "groups" commute their relationships on "members"?
If so, and assuming recursive groups aren't allowed, I've come up with an alternative graph that might illustrate your use case (as I understand it) more clearly -> http://console.neo4j.org/?id=wyr207
If you run
start n=node(5) match n-[?:knows|likes]-related, n-[?:member_of]->group-[:knows|likes]-other_related return related, other_related
on the graph, related would return all directly related nodes, and other_related all other nodes returned from a group, if the node is a member of a group. Combining those is beyond my Cypher ability, but they will be de-duped AFAIK (no nodes in related will be included in other_related).
Try the query in the console link with a few different node ids (N5 has a node id of 1) and see if that's what you were thinking. It would be simple to add relationship direction, etc.
Translating this to Gremlin is a tad bit tedious (pattern matching in Cypher is more natural), but LMK if this is in the right direction and I'll do it.