nestjs-paginate
nestjs-paginate copied to clipboard
MySQL json type is not recognized as jsonb column
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.