Open
Description
It's common to see warnings such as:
can-query-logic: Ignoring keys: foo, bar
I think we an improve on this in a few ways:
- Make it more clear that this occurs when a query is requested (ie, when someone does
Todo.getList(query)
. One idea is to log the actual query object. - Point out that this often occurs when a custom Query Logic is needed and link to documentation about that.
- It's possible that you simply forget to wrap your query in
filter: query
. Not sure how to aid with this case.