vertices_list = (
self.__g.V(hopped_vertex_ids)
.has_label(within(hop_via_vertices))
.both_e(*hop_via_edges)
.both_v()
.has(T.id, without(hopped_vertex_ids))
.has_not('supernode_identified_on')
.dedup()
.limit(vertex_count)
.value_map(True)
.to_list()
)
vertices_list = (
self.__g.V(hopped_vertex_ids)
.has_label(within(hop_via_vertices))
.both_e(*hop_via_edges)
.both_v()
.has(T.id, without(hopped_vertex_ids))
.has_not('supernode_identified_on')
.dedup()
.limit(vertex_count)
.value_map(True)
.to_list()
)