method Query.prototype.start Query.prototype.start(start: string | Buffer): this Set a starting cursor to a query. Examples Example 1 const {Datastore} = require('@google-cloud/datastore'); const datastore = new Datastore(); const companyQuery = datastore.createQuery('Company'); const cursorToken = 'X'; // Retrieve results starting from cursorToken. const startQuery = companyQuery.start(cursorToken); Parameters start: string | Buffer Return Type this SeeQuery Cursors