Open
Description
I get why this:
join(c: Country.name, n:["Palau", "Nauru"].item) {...c}
returns this:
and even why this:
join(c: Country.name, n:["Palau", "Nauru"].item) {...n}
returns this:
but what does this even mean?
join(c: Country.name, n:["Palau", "Nauru"].item) {...}
because this is what it returns:
In the context of a project, '...' means all the columns, but the type of the result of the join and/or the meaning of "..." are a bit unclear. Also, I understand rows and tables but it looks like entire structs are being returned in the last case: