I have a graph with some vertices that have edges towards each other (parent and child). Based off this question
This is what my code looks like
const showAllRelationships = async (target)=> {
var result = await g.V(target).bothE().otherV().path().by(__.valueMap(true));
console.log(result);
return result;
};
And this is the result I get.
GraphTraversal { graph: Graph {}, traversalStrategies: TraversalStrategies { strategies: [ [RemoteStrategy]
] }, bytecode: Bytecode { sourceInstructions: [], stepInstructions: [ [Array], [Array], [Array], [Array], [Array] ] }, traversers: null, sideEffects: null, _traversalStrategiesPromise: null, _traversersIteratorIndex: 0 }
What is wrong with this code that it isn't returning the edges?
question from:
https://stackoverflow.com/questions/65848285/gremlin-query-returning-graph-traversal-instead-of-edges 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…