does kitesql support nested queries, for example:
struct Person
{
name: Name,
age: u32,
}
struct Name
{
first: String,
last: String,
}
fn main()
{
let name = Person{Name: {first: "john", last: "Doe"}, age: 69};
}
where I want to query the person's first and last name?
does kitesql support nested queries, for example:
where I want to query the person's first and last name?