Nick Fix
06/24/2021, 5:44 PMvalues
{
"test": 10
}
and i trying to grab it this way:
const entries = await this.prismaClient.accountEntity.findMany({
where: {
values: {
path: ["test"],
gt: 5,
},
},
});
but it doesn't return anything. I would expect it to return all rows above 5.
I have the following preview features: previewFeatures = ["orderByRelation", "filterJson"]
I have tried to upgrade to version 2.25.0 but still no luck.
Please let me know if im doing anything wrongRyan
06/25/2021, 5:05 AM{"test": 9}
it will work fine.
I would suggest creating an issue here with the above use case so that we can look into this.Nick Fix
06/28/2021, 7:25 PMNick Fix
06/28/2021, 7:32 PMNick Fix
06/28/2021, 7:33 PMRyan
06/29/2021, 4:52 AM