Search code examples
neo4jnestjstypeorm

NestJS / TypeOrm / Neo4j : Nest can't resolve dependencies of the NEO4J_DRIVER


I try to run my NestJs/TypeOrm with Neo4j db but i've got an error :

Nest can't resolve dependencies of the NEO4J_DRIVER (?). Please make sure that the argument NEO4J_OPTIONS at index [0] is available in the Neo4jModule context.

I don't understand where it come from.

This is my app.module

import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { Neo4jModule } from 'nest-neo4j'
import { PersonModule } from './person/person.module';


@Module({
  imports: [
    Neo4jModule.forRootAsync({
      scheme: "neo4j+s",
      host: "db-sp8xxaunnz13icv892y5.graphenedb.com",
      port: 24786,
      username: 'neo4j',
      password: 'ingrid-ticket-capital-spirit-reform-6035'
    }),
    PersonModule,

  ],
  controllers: [AppController],
  providers: [AppService],
})
export class AppModule {}

This is my person.module.ts

import { Module } from '@nestjs/common';
import { PersonService } from './person.service';
import { PersonController } from './person.controller';
import { TypeOrmModule } from '@nestjs/typeorm';
import { Person } from './person.entity';
import { Neo4jModule } from 'nest-neo4j/dist';
import { PersonRepository } from './person.entityrepository';

@Module({
  imports: [
    TypeOrmModule.forFeature([PersonRepository]),
    
      ,
  ],

  providers: [
    PersonService
  ],

  controllers: [
    PersonController
  ]
})
export class PersonModule {}

Thanks for helping me !


Solution

  • I think you missed driver to install. Try this npm i neo4j-driver.