Pagination/getting all Entries for a Content Type

How do I return more than 100 entries? Currently there are about 2 thousand but the query I’m using only returns 100…

$query->setContentType($contentTypeID);
$releases = $client->getEntries($query);

Adding
->setLimit(500)
to the query returns more results, can go up to 1000 but you might hit response size limits

->setSkip(100) to the query will also help you… increment the number as you see fit.