joinQuery method
Creates a JoinQueryBuilder that can be used to query the collection
Note that when using a join query, you have to provide an alias
for the
query and for every other query participating in the join.
Implementation
JoinQueryBuilder joinQuery({required Alias alias}) => JoinQueryBuilder(
_collectionName,
_integrationId,
_querySubscriptionManager,
_documentReferenceFactory,
_queryBuilderFactory,
alias,
alias,
{alias: []},
{},
{},
query());