1234567891011121314151617181920 |
- N::File19 {
- name: String,
- age: I32,
- }
- E::Follows {
- From: File19,
- To: File19Vec,
- }
- V::File19Vec {
- name: String,
- age: I32,
- }
- QUERY file19() =>
- vec <- N<File19>::Out<Follows>::SearchV<File19Vec>(Embed("hello"), 10)
- RETURN vec
|