EdgeNode.php in Open Social 10.1.x
Same filename and directory in other branches
File
modules/custom/social_graphql/src/Plugin/GraphQL/DataProducer/Edge/EdgeNode.phpView source
<?php
namespace Drupal\social_graphql\Plugin\GraphQL\DataProducer\Edge;
use Drupal\graphql\Plugin\DataProducerPluginCachingInterface;
use Drupal\graphql\Plugin\GraphQL\DataProducer\DataProducerPluginBase;
use Drupal\social_graphql\Wrappers\EdgeInterface;
/**
* Returns the node for an edge.
*
* @DataProducer(
* id = "edge_node",
* name = @Translation("Edge node"),
* description = @Translation("Returns the node associated with an edge."),
* produces = @ContextDefinition("any",
* label = @Translation("Node")
* ),
* consumes = {
* "edge" = @ContextDefinition("any",
* label = @Translation("EdgeInterface")
* )
* }
* )
*/
class EdgeNode extends DataProducerPluginBase implements DataProducerPluginCachingInterface {
/**
* Resolves the value.
*
* @param \Drupal\social_graphql\Wrappers\EdgeInterface $edge
* The edge to retrieve the node from.
*
* @return mixed
* The graph node.
*/
public function resolve(EdgeInterface $edge) {
return $edge
->getNode();
}
}