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

MySQL json type is not recognized as jsonb column

Open Guigui34110 opened this issue 7 months ago • 4 comments
trafficstars

Hello,

First, iI would like to thank you for this useful library.

I am using MySQL DB and I have a json column declared like this :

  @Column({ type: 'json', nullable: true })
  tasks?: object[];

With MySQL DB, type is json rather than jsonb.

In code, I found the checkIsJsonb function. This function check the type must be equal to jsonb

When I want to filter my column, the column is not identified as jsonb and I am not able to filter as explained here

Please, can you help me ?

Thanks in advance. Guillaume.

Guigui34110 avatar Apr 03 '25 15:04 Guigui34110