ContactsQueryBuilder paging

The ContactsQueryBuilder limits the length of the result to 50, which can be set to a maximum of 1000 , by chaining the limit() function

import { contacts } from 'wix-crm-backend';

contacts.queryContacts().limit(1000).find()

In WixDataQuery I would call skip() to get the next page of items, for example

wixData.query("myCollection")
  .limit(1000)
  .skip(1000)
  .find()

I am missing this skip() function on the ContactsQueryBuilder , so how can I access the rest of my items, if the resultset is larger than 1000?

I am trying to set a Label programmatically on my contacts, which contains over 8000 records.