how to query with subselection ? f.e. I have an attribute in my schema with:
{
"dataType": ["geoCoordinates"],
"description": "The geocoordinate of the company",
"name": "coordinates"
}
Now geoCoordinates have latitude and longitude as subselection When query with
client.query.get(class_name=class_name, properties=[coordinates]).do()
I get the following error:
'Field "coordinates" of type "ArticlecoordinatesGeoCoordinatesObj" must have a sub selection.'
How to specify the sub-selection ?