file19.hx 259 B

1234567891011121314151617181920
  1. N::File19 {
  2. name: String,
  3. age: I32,
  4. }
  5. E::Follows {
  6. From: File19,
  7. To: File19Vec,
  8. }
  9. V::File19Vec {
  10. name: String,
  11. age: I32,
  12. }
  13. QUERY file19() =>
  14. vec <- N<File19>::Out<Follows>::SearchV<File19Vec>(Embed("hello"), 10)
  15. RETURN vec