Hi! I'm new to Neo4j, I'm currently migrating a lot of geospatial data from SQL and I'm a bit stuck on declaratively creating bus routes.
So far I have 60k bus-routes with the following relevant properties
stop_sequence: 1 // increasing integer with one being the start and n being the end outbound
route: 700 // a route-id integer, a route is an id for a bus-route for a particular operator
operator: Aircoach // a bus-operator ID
direction: Inbound // or Outbound
I'd like to connect each (operator,route) series of BusRoute nodes in order with the relationship direction depending on the direction field's value. I assume this is possible but I can't figure out how based on other linked list questions and documentation. Any help would be appreciated!