nestjs-seeder icon indicating copy to clipboard operation
nestjs-seeder copied to clipboard

An extension library for NestJS to perform seeding.

Results 26 nestjs-seeder issues
Sort by recently updated
recently updated
newest added

Removes [axios](https://github.com/axios/axios). It's no longer used after updating ancestor dependencies [axios](https://github.com/axios/axios), [@nestjs/common](https://github.com/nestjs/nest) and [@nestjs/core](https://github.com/nestjs/nest). These dependencies need to be updated together. Removes `axios` Updates `@nestjs/common` from 7.6.18 to 9.1.4 Release...

dependencies

Hello😃 it might not belong here (sorry if it does not😌 ), i posted on stackoverflow as well, But i thought someone here would be mor likely to respond to...

As mentioned, https://github.com/edwardanthony/nestjs-seeder/issues/8.

1 - I updated the "sample" project dependencies to fix the issue I was getting when trying to build: `Module '"buffer"' has no exported member 'Blob'.` 2 - I added...

Useful when you have some code that needs to be run *after* everything is seeded

Problem: ``` const data = DataFactory.createForClass(Message).generate(1, { body: 'Test this overwrites' }); // Output { "body": "Exercitationem rerum ab quae libero nobis debitis deleniti iusto aut." } // Expected {...

I have a specific use case where I need static ids, but random data. Is there a way to run DataFactory.generate, but to pass the current iteration number to the...

https://github.com/edwardanthony/nestjs-seeder/blob/42435b8b4bfa3adfdb9469e428d2521825207c1b/lib/seeder/seeder.service.ts#L10 drop and seed is running parallelly. Some times drop is executed later seed logs below ``` [Nest] 71391 - 11/12/2021, 10:15:36 AM VERBOSE [DatabaseLogger] QUERY: INSERT INTO "user_entity"("id", "username",...

when executing the seeder with the `--refresh` flag, my drop function is async as it needs to use the `await` keyword to delete items in the DB, however by the...

First of all thank you for this very helpful seeder that integrates very well with nestjs Wanted to request a feature for being able to drop seeded data basically calling...