<?php $this->assertEquals('Post B', $postB->title, 'Expect `Post B` is the result of the second query');
$this->assertCount(1, $result->items(), 'Expect cursor paginated query should have 1 result');
$this->assertEquals('Post B', current($result->items())->title, 'Expect the paginated query would return `Post B`');
}
public function testPaginationWithMultipleAliases()