if (property.getDataType() != PropertyType.GEO_LOCATION) {
continue;
}
Iterable<Vertex> vertices = graph.query(authorizations).
has(property.getTitle(), GeoCompare.WITHIN, new GeoCircle(latitude, longitude, radius)).
vertices();
for (Vertex vertex : vertices) {
results.getVertices().add(ClientApiConverter.toClientApiVertex(vertex, workspaceId, authorizations));
}
}