I have a nested field {A: v1, B:v2, C:v3, D:v4, E:v5}, and entries are being created from ndb model class in app engine.
I need to run queries in some other application, where i need to return only certain projection. I created the suggested index, but still query returns 0 results.
Works: select * from Kind where E > v6.
Works: select A,B,D, E from kind.
Does not work: select A, B, D from kind where E > v6