Working with Google App Engine's NDB, I'm looking to query for all items that start with a user-inputted string. Example:
abc_123
abcdefg
123abc
Querying for "abc" should return abc_123, abcdefg (however, not 123abc as it doesn't start with "abc")
I previously used the code below for a similar but different purpose:
q = q.filter(order._properties[kw].IN(values_list))
which filtered for all values in values_list that were in kw, I am now looking to filter for all values that start with a string that are in kw.
Try: