-
Notifications
You must be signed in to change notification settings - Fork 7
Closed
Description
I see in the README that you can explicitly query deleted records by overriding the value automatically included by the middleware.
I'm looking to query for all records without regard for their deleted status. I tried doing an OR
at the top level, but looking at the code, it only allows override of the specific deleted column meaning that even if I include an OR clause like the following, it's still overridden by the top level deletedAt = NULL
OR: [
{
deletedAt: {
equals: null,
},
},
{
deletedAt: {
not: null,
},
},
]
Is there a way to remove the top level deletedAt = NULL
entirely so I can query for all records?
Metadata
Metadata
Assignees
Labels
No labels