Nested Query
Nested Query attribute indicates that the field type is a query.
#[nested_query]
Usage
struct FindUser {
#[nested_query]
pub credentials: FindCredentials
}
struct FindCredentials {
...
}