i.e. ```python db = firestore.Client() query = db.collection('cities').order_by('population').start_at(1000000) ``` rather than the current ```python db = firestore.Client() query = db.collection('cities').order_by('population').start_at({'population': 1000000}) ``` /cc @samtstern @jonparrott