const { graph: orgDb, client: nClient } = connectNeptune();
const dept_and_div = (await orgDb.V().has('email', "xxx@yyy.com")
.inE('manages').outV().valueMap()
.with_(WithOptions.tokens).by(__.unfold()).toList());
for (const item of dept_and_div) {
if (item.get(T.label) === 'organization') {
//.........
const { graph: orgDb, client: nClient } = connectNeptune();
const dept_and_div = (await orgDb.V().has('email', "xxx@yyy.com")
.inE('manages').outV().valueMap()
.with_(WithOptions.tokens).by(__.unfold()).toList());
for (const item of dept_and_div) {
if (item.get(T.label) === 'organization') {
//.........