Graph Traversal/Traversal StepsTraversals from EdgesFromN Get the node that the edge originates from. Helix::FromN Example: HelixPythonQUERY get_follower_from_relationship(relationshipID: ID) => follower <- E<Follows>(relationshipID)::FromN RETURN follower ToN Get the node that the edge points to. Helix::ToN Example: HelixPythonQUERY get_following_from_relationship(relationshipID: ID) => followed_user <- E<Follows>(relationshipID)::ToN RETURN followed_userTraversals from NodesOnce you’ve selected your starting points, these operations allow you to navigate through the graph.Conditional StepsFilter and conditionally select elements in your graph. These operations allow you to filter and select specific elements from your graph based on conditions.