class EntityBuffer in GraphQL 8.3
Same name and namespace in other branches
- 8.4 src/GraphQL/Buffers/EntityBuffer.php \Drupal\graphql\GraphQL\Buffers\EntityBuffer
Hierarchy
- class \Drupal\graphql\GraphQL\Buffers\BufferBase
- class \Drupal\graphql\GraphQL\Buffers\EntityBuffer
Expanded class hierarchy of EntityBuffer
2 files declare their use of EntityBuffer
- EntityById.php in modules/
graphql_core/ src/ Plugin/ GraphQL/ Fields/ Entity/ EntityById.php - EntityQueryEntities.php in modules/
graphql_core/ src/ Plugin/ GraphQL/ Fields/ EntityQuery/ EntityQueryEntities.php
1 string reference to 'EntityBuffer'
1 service uses EntityBuffer
File
- src/
GraphQL/ Buffers/ EntityBuffer.php, line 7
Namespace
Drupal\graphql\GraphQL\BuffersView source
class EntityBuffer extends BufferBase {
/**
* The entity type manager service.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* EntityBuffer constructor.
*
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
* The entity type manager service.
*/
public function __construct(EntityTypeManagerInterface $entityTypeManager) {
$this->entityTypeManager = $entityTypeManager;
}
/**
* Add an item to the buffer.
*
* @param string $type
* The entity type of the given entity ids.
* @param array|int $id
* The entity id(s) to load.
*
* @return \Closure
* The callback to invoke to load the result for this buffer item.
*/
public function add($type, $id) {
$item = new \ArrayObject([
'type' => $type,
'id' => $id,
]);
return $this
->createBufferResolver($item);
}
/**
* {@inheritdoc}
*/
protected function getBufferId($item) {
return $item['type'];
}
/**
* {@inheritdoc}
*/
public function resolveBufferArray(array $buffer) {
$type = reset($buffer)['type'];
$ids = array_map(function (\ArrayObject $item) {
return (array) $item['id'];
}, $buffer);
$ids = call_user_func_array('array_merge', $ids);
$ids = array_values(array_unique($ids));
// Load the buffered entities.
$entities = $this->entityTypeManager
->getStorage($type)
->loadMultiple($ids);
return array_map(function ($item) use ($entities) {
if (is_array($item['id'])) {
return array_reduce($item['id'], function ($carry, $current) use ($entities) {
if (!empty($entities[$current])) {
return $carry + [
$current => $entities[$current],
];
}
return $carry;
}, []);
}
return isset($entities[$item['id']]) ? $entities[$item['id']] : NULL;
}, $buffer);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BufferBase:: |
protected | property | The the array of buffers. | |
BufferBase:: |
protected | property | The array of result sets. | |
BufferBase:: |
public | function | Helper function to create a resolver for a singular buffer. | |
BufferBase:: |
protected | function | Creates a callback to invoke to load the result for this buffer item. | |
BufferBase:: |
protected | function | Resolves the given buffer wholly. | |
BufferBase:: |
protected | function | Returns the result of the given item after processing the buffer if needed. | |
EntityBuffer:: |
protected | property | The entity type manager service. | |
EntityBuffer:: |
public | function | Add an item to the buffer. | |
EntityBuffer:: |
protected | function |
Overrides BufferBase:: |
|
EntityBuffer:: |
public | function |
Resolve the buffer as an array. Overrides BufferBase:: |
|
EntityBuffer:: |
public | function | EntityBuffer constructor. |