I am trying to use indexes on an entity, for example
Entity Person
- FirstName String indexed
- LastName String indexed
- Address String indexed
and more indexed properties
However, I will query with just an indexed property at a time. I will not make the query by using FirstName and LastName as the filter criteria in one query, for example, but just one of them. I had the experience of having the large index size in datastore from the combination of indexed properties in an entity. I want to have my properties indexed individually, not compositely. Is there any way to do this?