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
Would it be helpful (and would you consider merging) if I added or methods for each of the query methods? orWhereMeta(), orWhereHasMeta(), and so on. They would be helpful to avoid having to do fun things like this:
@frasmage@squatto I would very much like to see orWhereMeta added. Without it some of my queries are becoming very long and complex since migrating to metable
Would it be helpful (and would you consider merging) if I added
or
methods for each of the query methods?orWhereMeta()
,orWhereHasMeta()
, and so on. They would be helpful to avoid having to do fun things like this:AKA "where the
hidden_from_admin
meta isfalse
or it doesn't exist"This instead could be:
Or this:
AKA "where the
source_order_id
orsource_order_number
meta is$searchValue
"This instead could be:
The
or
methods will essentially just beorWhere()
wrappers around the base query methods (like I'm doing above).Let me know what you think. Thanks!
The text was updated successfully, but these errors were encountered: