Say I have two collections like this:
// City Collection
<city>
<id>1</id>
<name>Tulsa</name>
<stateId>1></stateId>
</city>
// State Collection
<state>
<id>1</id>
<name>Oklahoma</name>
</state>
Now say I want to return a list of the cities with the state name instead of stateId. How can I do this join efficiently, using the node.js client API and the query builder?