This repository was archived by the owner on Oct 11, 2025. It is now read-only.

Description
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