0.0.107-alpha • Published 4 months ago

@citifuel/citifuel-prisma v0.0.107-alpha

Weekly downloads
-
License
ISC
Repository
-
Last release
4 months ago

Usage

  1. Import the Prisma Modules: Import the required Prisma modules in your NestJS application.

  2. Inject Prisma Services: Inject the Prisma services into your NestJS services or controllers to use the extended Prisma clients.

  3. Add .env variables In case you need to use all connection provide all db urls. Currently to use CPM new schema

    • DATABASE_URL_CITIFUEL
    • DATABASE_URL_TSS.

Example

import { PrismaCitifuelModule, PrismaTssModule } from '@citifuel/citifuel-prisma';
import { Module } from '@nestjs/common';

@Module({
  imports: [PrismaCitifuelModule, PrismaTssModule],
})
export class AppModule {}

import { PrismaService as PrismaServiceCitifuel, PrismaService as PrismaServiceTss } from '@citifuel/citifuel-prisma';
import { Injectable } from '@nestjs/common';

@Injectable()
export class SomeService {
  constructor(
    private readonly prismaCitifuel: PrismaServiceCitifuel,
    private readonly prismaTss: PrismaServiceTss,
  ) {}

  async someMethod() {
    const dataFromCitifuel = await this.prismaCitifuel.someModel.findMany();
    const dataFromTss = await this.prismaTss.someModel.findMany();

    const kysely = this.prismaCitifuel.$kysely.selectFrom('${TableName}').selectAll();
    // Use the data as needed
  }
}

This setup ensures that you have strongly typed Prisma clients with Kysely extensions, integrated into your NestJS application.

0.0.107-alpha

4 months ago

0.0.101

4 months ago

0.0.106-alpha

4 months ago

0.0.105-alpha

5 months ago

0.0.100

5 months ago

0.0.104-alpha

5 months ago

0.0.103-alpha

5 months ago

0.0.102-alpha

5 months ago

0.0.101-alpha

5 months ago

0.0.100-alpha

5 months ago

0.0.99

5 months ago

0.0.98

5 months ago

0.0.97

5 months ago

0.0.96

5 months ago

0.0.95

5 months ago

0.0.94

5 months ago

0.0.93

5 months ago

0.0.92

5 months ago

0.0.91

6 months ago

0.0.88

6 months ago

0.0.87

6 months ago

0.0.86

6 months ago

0.0.85

7 months ago

0.0.84

7 months ago

0.0.83

7 months ago

0.0.82

7 months ago

0.0.81

7 months ago

0.0.80

7 months ago

0.0.79

7 months ago

0.0.78

7 months ago

0.0.77

7 months ago

0.0.76

7 months ago

0.0.75

7 months ago

0.0.74

7 months ago

0.0.73

7 months ago

0.0.72

8 months ago

0.0.71

8 months ago

0.0.70

8 months ago

0.0.69

8 months ago

0.0.68

8 months ago

0.0.67

8 months ago

0.0.66

8 months ago

0.0.65

8 months ago

0.0.64

8 months ago

0.0.63

8 months ago

0.0.62

8 months ago

0.0.61

8 months ago

0.0.60

8 months ago

0.0.59

8 months ago

0.0.58

8 months ago

0.0.57

8 months ago

0.0.56

8 months ago

0.0.55

8 months ago

0.0.54

8 months ago

0.0.53

8 months ago

0.0.52

8 months ago

0.0.51

8 months ago

0.0.50

8 months ago

0.0.49

9 months ago

0.0.48

9 months ago

0.0.47

9 months ago

0.0.46

9 months ago

0.0.45

9 months ago

0.0.44

9 months ago

0.0.43

9 months ago

0.0.42

9 months ago

0.0.41

9 months ago

0.0.40

9 months ago

0.0.39

9 months ago

0.0.38

9 months ago

0.0.37

9 months ago

0.0.36

9 months ago

0.0.35

9 months ago

0.0.34

9 months ago

0.0.33

9 months ago

0.0.32

9 months ago

0.0.31

9 months ago

0.0.30

9 months ago

0.0.29

9 months ago

0.0.28

9 months ago

0.0.27

9 months ago

0.0.26

9 months ago

0.0.25

9 months ago

0.0.24

9 months ago

0.0.23

10 months ago

0.0.22

10 months ago

0.0.21

10 months ago

0.0.20

10 months ago

0.0.19

10 months ago

0.0.18

10 months ago

0.0.17

10 months ago

0.0.16

10 months ago

0.0.15

10 months ago

0.0.14

10 months ago

0.0.13

10 months ago

0.0.12

10 months ago

0.0.11

10 months ago

0.1.0

10 months ago

0.0.9

10 months ago

0.0.8

10 months ago

0.0.7

10 months ago

0.0.6

10 months ago

0.0.5

10 months ago

0.0.4

10 months ago

0.0.3

10 months ago

0.0.2

10 months ago

0.0.1

10 months ago