rsnext/examples/with-neo4j/lib/fetcher.js
Nikolas Santis a5917317f0
[ EXAMPLES ] Added with-neo4j (#16559)
Adding a example with **Neo4j** native graph database.

- with-neo4j: basic api routes with neo4j driver.

:)
2020-11-24 18:35:51 +00:00

4 lines
106 B
JavaScript

export default async function fetcher(...args) {
const res = await fetch(...args)
return res.json()
}