You should be able to do something with the line combiner. Under advanced settings if you choose the Preserve Orientation option, lines won’t be combined if they are not in the same direction. If you preserve lines as paths you can count the number of parts to see where lines have not been combined (you’ll have to account for the first section separately).
You could also choose not to Preserve Orientation, build paths, split them, then look for unmatched geometries between your original lines and the split lines.
Try the TopologyBuilder with the edge port output. There should be a ‘_from_node’ and ‘_to_node’ attribute on each of lines. Use the Matcher on one of those attributes, and the matched port should produce the lines that are going in the direction of the same node.
You should be able to do something with the line combiner. Under advanced settings if you choose the Preserve Orientation option, lines won’t be combined if they are not in the same direction. If you preserve lines as paths you can count the number of parts to see where lines have not been combined (you’ll have to account for the first section separately).
You could also choose not to Preserve Orientation, build paths, split them, then look for unmatched geometries between your original lines and the split lines.
Unfortunately, it didn’t work. The lines were combined anyway.