/// <summary>
 /// what other users rated those videos highly
 /// </summary>
 public static GraphTraversal <Vertex, Vertex> AllRatedVideos(this GraphTraversal <Vertex, Vertex> t)
 {
     return(t.Map <Vertex>(__.Out(EdgeRated).Dedup().Fold()));
 }