I have this issue that I ought to find the length of a path that starting vertex is equal to ending vertex!
I already tried this:
distances(Graph, v = 17, to = 17)
and this:
all_simple_paths(Graph,17,17)
but it doesn't work.
My graph is weighted and directed. Example data is provided in my previous post.