-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathBlog.php
87 lines (76 loc) · 1.84 KB
/
Blog.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
declare(strict_types=1);
namespace TheCodingMachine\GraphQLite\Fixtures\Integration\Models;
use GraphQL\Deferred;
use TheCodingMachine\GraphQLite\Annotations\Field;
use TheCodingMachine\GraphQLite\Annotations\Prefetch;
use TheCodingMachine\GraphQLite\Annotations\Type;
#[Type]
class Blog
{
public function __construct(
private readonly int $id,
) {
}
#[Field(outputType: 'ID!')]
public function getId(): int
{
return $this->id;
}
/**
* @param Post[][] $prefetchedPosts
*
* @return Post[]
*/
#[Field]
public function getPosts(
#[Prefetch('prefetchPosts')]
array $prefetchedPosts,
): array {
return $prefetchedPosts[$this->id];
}
/**
* @param Blog[][] $prefetchedSubBlogs
*
* @return callable(): Blog[]
*/
#[Field]
public function getSubBlogs(
#[Prefetch('prefetchSubBlogs')]
array $prefetchedSubBlogs,
): callable {
return fn () => $prefetchedSubBlogs[$this->id];
}
/**
* @param Blog[] $blogs
*
* @return Post[][]
*/
public static function prefetchPosts(iterable $blogs): array
{
$posts = [];
foreach ($blogs as $blog) {
$blogId = $blog->getId();
$posts[$blog->getId()] = [
new Post('post-' . $blogId . '.1'),
new Post('post-' . $blogId . '.2'),
];
}
return $posts;
}
/**
* @param Blog[] $blogs
*
* @return Blog[][]
*/
public static function prefetchSubBlogs(iterable $blogs): array
{
$subBlogs = [];
foreach ($blogs as $blog) {
$blogId = $blog->getId();
$subBlogId = $blogId * 10;
$subBlogs[$blog->id] = [new Blog($subBlogId)];
}
return $subBlogs;
}
}