Guest User

Untitled

a guest
Aug 17th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. MATCH (c:places), (c2:office)
  2. WHERE c2.office_id = {office}
  3. AND c2.city = {city}
  4. AND c.category = {category}
  5. RETURN c.places_id as place_name, c.category as Category,
  6. c.sub_category as Sub_Category, distance(c.location, c2.location)
  7. as Distance_in_meters order by distance(c.location, c2.location) LIMIT 50
Add Comment
Please, Sign In to add comment