Giter Site home page Giter Site logo

Comments (5)

vsamofal avatar vsamofal commented on June 12, 2024 1

@Alsdrouf

I will take a look; looks like something with loadEagerRelations

if you can create a test case that fails it will help a lot, or at least share more details like entities

from nestjs-paginate.

Alsdrouf avatar Alsdrouf commented on June 12, 2024 1
it('should work', async () => {
    const config: PaginateConfig<CatToyEntity> = {
        sortableColumns: ['id'],
        where: {cat: {name: cats[0].name}}
    }
    const query: PaginateQuery = {
        path: '',
    }

    const result = await paginate<CatToyEntity>(query, catToyRepo, config)

    expect(result.data.length).toStrictEqual(3)
})

Found it

Error is when where contain a not loaded relations

Exemple that really work

it('should work', async () => {
    const config: PaginateConfig<CatToyEntity> = {
        relations: ['cat']
        sortableColumns: ['id'],
        where: {cat: {name: cats[0].name}}
    }
    const query: PaginateQuery = {
        path: '',
    }

    const result = await paginate<CatToyEntity>(query, catToyRepo, config)

    expect(result.data.length).toStrictEqual(3)
})

@vsamofal

from nestjs-paginate.

vsamofal avatar vsamofal commented on June 12, 2024 1

#770 fix is ready

from nestjs-paginate.

Alsdrouf avatar Alsdrouf commented on June 12, 2024
Fleet entity
@Entity()
export class Fleet implements IFleet {
  @PrimaryGeneratedColumn('uuid')
  readonly id: string;

  @Column('varchar', { length: 255 })
  name: string;

  @Column('varchar', { length: 7 })
  color: string;

  @Column('int', { default: 0 })
  caution: number;

  @Column('jsonb', { nullable: true, default: null })
  geoJson: any;

  @ManyToOne(() => Operator, (operator) => operator.fleets)
  readonly operator?: Operator

  @CreateDateColumn()
  readonly createdAt: Date;

  @UpdateDateColumn()
  readonly updatedAt: Date;

  @DeleteDateColumn()
  readonly deletedAt: Date | null;
}
Operator entity
@Entity()
export class Operator {
  @PrimaryGeneratedColumn('uuid')
  readonly id: string;

  @Column('varchar', { length: 128, unique: true })
  name: string;

  @Column('varchar', { length: 128 })
  logoUrl: string;

  @Column('jsonb')
  theme: any;

  @Column('varchar', {
    length: 1024,
    nullable: true,
    transformer: {
      from: (value: string) => (value && value.length > 0 ? value.split(',') : null),
      to: (value: string[]) => (value && value.length > 0 ? value.join(',') : null),
    },
  })
  mailingList: string[];

  @OneToMany(() => Fleet, (fleet) => fleet.operator)
  readonly fleets?: Fleet[];

  @CreateDateColumn()
  readonly createdAt: Date;

  @UpdateDateColumn()
  readonly updatedAt: Date;

  @DeleteDateColumn()
  readonly deletedAt: Date | null;
}

It's really simplified entity, note that I am using postgres

I am not using any eager relation in all my entity

from nestjs-paginate.

Alsdrouf avatar Alsdrouf commented on June 12, 2024

I will try to write a test

from nestjs-paginate.

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.