Longest routes from Atlanta
Find the ten farthest direct destinations served from ATL.
MATCH (origin:airport)-[route:route]->(destination:airport)
WHERE origin.code = 'ATL'
RETURN destination.code AS destination,
destination.city AS city,
route.dist AS miles
ORDER BY miles DESC
LIMIT 10;