File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ You can find and compare releases at the [GitHub release page](https://github.co
99
1010## Unreleased
1111
12+ ## v15.30.0
13+
14+ ### Added
15+
1216- Add support for adding description to schema https://github.com/webonyx/graphql-php/pull/1834
1317
1418## v15.29.4
Original file line number Diff line number Diff line change @@ -66,13 +66,11 @@ public function testFragmentQueriesOnRoot(string $query): void
6666 $ this ->assertDocumentValidators ($ query , 12 , 13 );
6767 }
6868
69- /** @return array<int, array<string>> */
70- public function fragmentQueriesOnRootProvider (): array
69+ /** @return iterable< array<string>> */
70+ public function fragmentQueriesOnRootProvider (): iterable
7171 {
72- return [
73- ['fragment humanFragment on QueryRoot { human { dogs { name } } } query { ...humanFragment } ' ],
74- ['query { ...humanFragment } fragment humanFragment on QueryRoot { human { dogs { name } } } ' ],
75- ];
72+ yield ['fragment humanFragment on QueryRoot { human { dogs { name } } } query { ...humanFragment } ' ];
73+ yield ['query { ...humanFragment } fragment humanFragment on QueryRoot { human { dogs { name } } } ' ];
7674 }
7775
7876 public function testAliasesQueries (): void
You can’t perform that action at this time.
0 commit comments