Join
type JoinTypes = 'INNER' | 'LEFT' | 'RIGHT' | 'FULL';
export type ParcelQLJoin = {
type: JoinTypes;
on: ParcelQLFilter;
} & (
| { table: string; alias?: string }
| { table: ParcelQLQuery<'temporary_table'>; alias: string }
);
Tutorial will be added soon.