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
When you want to check if a list contains an item you normally check by doing .filter("list =", item) but DatastoreInputReader validation is expecting a list instead of an item.
Should be mapper_params = { "filters": [("list", "=", item)] }
instead of mapper_params = { "filters": [("list", "=", [item])] }
When you want to check if a list contains an item you normally check by doing
.filter("list =", item)
but DatastoreInputReader validation is expecting a list instead of an item.Should be
mapper_params = { "filters": [("list", "=", item)] }
instead of
mapper_params = { "filters": [("list", "=", [item])] }
Validate in source code
The text was updated successfully, but these errors were encountered: