You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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 leveldeletedAt = NULL
Is there a way to remove the top level
deletedAt = NULL
entirely so I can query for all records?The text was updated successfully, but these errors were encountered: