Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function build(SchemaConfig $config) |
||
23 | { |
||
24 | $config->getQuery()->addFields([ |
||
25 | 'authors' => [ |
||
26 | 'type' => new ListType(new AuthorType()), |
||
27 | 'resolve' => function () { |
||
28 | return DataProvider::getAuthors(); |
||
29 | } |
||
30 | ], |
||
31 | new RecentBooksField(), |
||
32 | new CategoriesField(), |
||
33 | ]); |
||
34 | } |
||
35 | |||
36 | } |