Where we have a many:1 join and there is no match the nested object should be empty object.... i.e.
const resp = await dare.get('table', [{nestedJoin: ['id', 'field1',...]]);
// expected
{
nestedJoin: {},
}
// actual
{
nestedJoin: {
id: null,
field1: null,
...
},
}