We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02ff391 commit a901c3aCopy full SHA for a901c3a
tests/Database/SelectFields/PrimaryKeyTests/PaginationTest.php
@@ -133,12 +133,12 @@ public function testInterfacePagination(): void
133
134
$result = $this->httpGraphql($query);
135
136
- // $this->assertSqlQueries(
137
- // <<<'SQL'
138
- //select count(*) as aggregate from "posts";
139
- //select "posts"."id" from "posts" limit 1 offset 0;
140
- //SQL
141
- // );
+ $this->assertSqlQueries(
+ <<<'SQL'
+ select count(*) as aggregate from "posts";
+ select * from "posts" limit 1 offset 0;
+ SQL
+ );
142
143
$expectedResult = [
144
'data' => [
0 commit comments