forked from thecodingmachine/graphqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlog.php
More file actions
90 lines (78 loc) · 1.99 KB
/
Blog.php
File metadata and controls
90 lines (78 loc) · 1.99 KB
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
88
89
90
<?php
declare(strict_types=1);
namespace TheCodingMachine\GraphQLite\Fixtures\Integration\Models;
use Closure;
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 */
#[Field(outputType: '[Blog!]!')]
public function getSubBlogs(
#[Prefetch('prefetchSubBlogs')]
array $prefetchedSubBlogs,
): Deferred {
return new Deferred(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;
}
/** @return Closure(): User */
#[Field]
public function author(): Closure {
return fn () => new User('Author', 'author@graphqlite');
}
}