I created an API connection using neo4j-driver bolt. how can i convert the API response into HTTP like (columns + data) format?
i want the response to be like this:
thanks!
i used neo4j-driver and the URI scheme is bolt for the API connection. something like this:
to get the response:
session
.run(statement)
.then((result) => {
return result;
})
my reference: https://www.npmjs.com/package/neo4j-dri...