Coder Social home page Coder Social logo

Error: Nest can't resolve dependencies of the LoggerService (?). Please make sure that the argument LoggerEntityModel at index [0] is available in the LoggerModule context. about ack-nestjs-boilerplate HOT 4 CLOSED

helxsz avatar helxsz commented on May 28, 2024
Error: Nest can't resolve dependencies of the LoggerService (?). Please make sure that the argument LoggerEntityModel at index [0] is available in the LoggerModule context.

from ack-nestjs-boilerplate.

Comments (4)

andrechristikan avatar andrechristikan commented on May 28, 2024 2

Thankyou @sarkstephan
You right, that because of @nestjs/mongoose version update and this boiler use custom connection name

@Global()
@Module({
    providers: [LoggerService],
    exports: [LoggerService],
    imports: [
        MongooseModule.forFeature(
            [
                {
                    name: LoggerEntity.name,
                    schema: LoggerSchema,
                    collection: LoggerDatabaseName,
                },
            ],
            DATABASE_CONNECTION_NAME // <--- here
        ),
    ],
})
export class LoggerModule {}

To resolve the problem, we need to put custom connection name in @InjectModel too.

export function DatabaseEntity(
    entity: string,
    connectionName?: string
): (target: Record<string, any>, key: string | symbol, index?: number) => void {
    return InjectModel(entity, connectionName || DATABASE_CONNECTION_NAME); // <--- here
}

By the way, i have done update this boiler. Go get the newest.

from ack-nestjs-boilerplate.

sarkstephan avatar sarkstephan commented on May 28, 2024 1

For me It happens after yarn upgrade --latest for @nestjs/mongoose
This is why there are issues injecting mongoose models.
It's not specifically related to LoggerService, this will happen to any service tho
stable with @nestjs/[email protected]

from ack-nestjs-boilerplate.

github-actions avatar github-actions commented on May 28, 2024

Thank you for opening your first issue here! Please be patient until your request is processed 🚀

from ack-nestjs-boilerplate.

andrechristikan avatar andrechristikan commented on May 28, 2024

Hi @helxsz
can you share the LoggerModule code and the LoggerService ?

from ack-nestjs-boilerplate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.