I have a collection of Entities of one kind. I need to extract the distinct values of one property, named p, of these Entities.
In GQL, I would do:
SELECT DISTINCT p from kind
However in the gcloud-python library GQL queries aren't implemented yet (see issue-304).
How should I do that with the tools currently available in gcloud-python ? I'm aware of a "group-by" workaround, yet the performances are terrible.