0

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?

Morgan Smith
  • 291
  • 2
  • 12

1 Answers1

1

You'll need to add a Terminal Step to the end of your query in order for the query to be sent to the server: https://tinkerpop.apache.org/docs/3.4.9/reference/#terminal-steps

Taylor Riggan
  • 1,963
  • 6
  • 12