I am trying to run a query, that will return only entities that have a missing property.
I have tried this:
query = client.query(kind='IPs')
query.add_filter('property_name','=',None)
But this returns an empty dataset.
Is there any way to do this without inventing another property?
Note: I am using google-cloud-datstore library with python3.6