file10.hx 312 B

12345678910111213141516
  1. N::File9 {
  2. INDEX name: String,
  3. INDEX age: I32,
  4. INDEX count: F32,
  5. }
  6. E::EFile9 {
  7. From: File9,
  8. To: File9,
  9. }
  10. QUERY file9(other_id: ID, id: ID) =>
  11. path1 <- N<File9>(id)::ShortestPath<File9>::To(other_id)
  12. path2 <- N<File9>(id)::ShortestPath<File9>::From(other_id)
  13. RETURN path1, path2