mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-02-11 10:09:24 +03:00
add replies fragments
This commit is contained in:
parent
51e67d49c7
commit
7bed5ef4a8
@ -162,4 +162,167 @@ class ResolveInfoTest extends \PHPUnit_Framework_TestCase
|
|||||||
$this->assertEquals($expectedDefaultSelection, $actualDefaultSelection);
|
$this->assertEquals($expectedDefaultSelection, $actualDefaultSelection);
|
||||||
$this->assertEquals($expectedDeepSelection, $actualDeepSelection);
|
$this->assertEquals($expectedDeepSelection, $actualDeepSelection);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testMergedFragmentsFieldSelection()
|
||||||
|
{
|
||||||
|
$image = new ObjectType([
|
||||||
|
'name' => 'Image',
|
||||||
|
'fields' => [
|
||||||
|
'url' => ['type' => Type::string()],
|
||||||
|
'width' => ['type' => Type::int()],
|
||||||
|
'height' => ['type' => Type::int()]
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
|
||||||
|
$article = null;
|
||||||
|
|
||||||
|
$author = new ObjectType([
|
||||||
|
'name' => 'Author',
|
||||||
|
'fields' => function() use ($image, &$article) {
|
||||||
|
return [
|
||||||
|
'id' => ['type' => Type::string()],
|
||||||
|
'name' => ['type' => Type::string()],
|
||||||
|
'pic' => [ 'type' => $image, 'args' => [
|
||||||
|
'width' => ['type' => Type::int()],
|
||||||
|
'height' => ['type' => Type::int()]
|
||||||
|
]],
|
||||||
|
'recentArticle' => ['type' => $article],
|
||||||
|
];
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
$reply = new ObjectType([
|
||||||
|
'name' => 'Reply',
|
||||||
|
'fields' => [
|
||||||
|
'author' => ['type' => $author],
|
||||||
|
'body' => ['type' => Type::string()]
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
|
||||||
|
$article = new ObjectType([
|
||||||
|
'name' => 'Article',
|
||||||
|
'fields' => [
|
||||||
|
'id' => ['type' => Type::string()],
|
||||||
|
'isPublished' => ['type' => Type::boolean()],
|
||||||
|
'author' => ['type' => $author],
|
||||||
|
'title' => ['type' => Type::string()],
|
||||||
|
'body' => ['type' => Type::string()],
|
||||||
|
'image' => ['type' => $image],
|
||||||
|
'replies' => ['type' => Type::listOf($reply)]
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
|
||||||
|
$doc = '
|
||||||
|
query Test {
|
||||||
|
article {
|
||||||
|
author {
|
||||||
|
name
|
||||||
|
pic {
|
||||||
|
url
|
||||||
|
width
|
||||||
|
}
|
||||||
|
}
|
||||||
|
image {
|
||||||
|
width
|
||||||
|
height
|
||||||
|
...MyImage
|
||||||
|
}
|
||||||
|
...Replies01
|
||||||
|
...Replies02
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fragment MyImage on Image {
|
||||||
|
url
|
||||||
|
}
|
||||||
|
|
||||||
|
fragment Replies01 on article {
|
||||||
|
replies {
|
||||||
|
body
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fragment Replies02 on article {
|
||||||
|
replies {
|
||||||
|
author {
|
||||||
|
id
|
||||||
|
name
|
||||||
|
pic {
|
||||||
|
url
|
||||||
|
width
|
||||||
|
... on Image {
|
||||||
|
height
|
||||||
|
}
|
||||||
|
}
|
||||||
|
recentArticle {
|
||||||
|
id
|
||||||
|
title
|
||||||
|
body
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
';
|
||||||
|
$expectedDefaultSelection = [
|
||||||
|
'author' => true,
|
||||||
|
'image' => true,
|
||||||
|
'replies' => true
|
||||||
|
];
|
||||||
|
$expectedDeepSelection = [
|
||||||
|
'author' => [
|
||||||
|
'name' => true,
|
||||||
|
'pic' => [
|
||||||
|
'url' => true,
|
||||||
|
'width' => true
|
||||||
|
]
|
||||||
|
],
|
||||||
|
'image' => [
|
||||||
|
'width' => true,
|
||||||
|
'height' => true,
|
||||||
|
'url' => true
|
||||||
|
],
|
||||||
|
'replies' => [
|
||||||
|
'body' => true, //this would be missing if not for the fix https://github.com/webonyx/graphql-php/pull/98
|
||||||
|
'author' => [
|
||||||
|
'id' => true,
|
||||||
|
'name' => true,
|
||||||
|
'pic' => [
|
||||||
|
'url' => true,
|
||||||
|
'width' => true,
|
||||||
|
'height' => true
|
||||||
|
],
|
||||||
|
'recentArticle' => [
|
||||||
|
'id' => true,
|
||||||
|
'title' => true,
|
||||||
|
'body' => true
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
];
|
||||||
|
|
||||||
|
$hasCalled = false;
|
||||||
|
$actualDefaultSelection = null;
|
||||||
|
$actualDeepSelection = null;
|
||||||
|
|
||||||
|
$blogQuery = new ObjectType([
|
||||||
|
'name' => 'Query',
|
||||||
|
'fields' => [
|
||||||
|
'article' => [
|
||||||
|
'type' => $article,
|
||||||
|
'resolve' => function($value, $args, $context, ResolveInfo $info) use (&$hasCalled, &$actualDefaultSelection, &$actualDeepSelection) {
|
||||||
|
$hasCalled = true;
|
||||||
|
$actualDefaultSelection = $info->getFieldSelection();
|
||||||
|
$actualDeepSelection = $info->getFieldSelection(5);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
|
||||||
|
$schema = new Schema(['query' => $blogQuery]);
|
||||||
|
$result = GraphQL::execute($schema, $doc);
|
||||||
|
|
||||||
|
$this->assertTrue($hasCalled);
|
||||||
|
$this->assertEquals(['data' => ['article' => null]], $result);
|
||||||
|
$this->assertEquals($expectedDefaultSelection, $actualDefaultSelection);
|
||||||
|
$this->assertEquals($expectedDeepSelection, $actualDeepSelection);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user