Api

Usage

Effortlessly integrate Neo4j's powerful graph database into your Nuxt applications!

Once configured, you can start using the Neo4j driver provided by the module in your Nuxt application. Here's an example of how to use it:

export default defineEventHandler(async () => {
  const { records } = await useDriver().executeQuery('MATCH (q:User) RETURN q LIMIT 25;')
  return records
})

for more information please check neo4j documentation