EdgeInterface.php in Open Social 10.3.x
Namespace
Drupal\social_graphql\WrappersFile
modules/custom/social_graphql/src/Wrappers/EdgeInterface.phpView source
<?php
namespace Drupal\social_graphql\Wrappers;
/**
* Provides a common interface for edges that DataProducers can work with.
*/
interface EdgeInterface {
/**
* Return the cursor for this edge.
*/
public function getCursor() : string;
/**
* Return the node for this edge.
*/
public function getNode();
}
Interfaces
Name | Description |
---|---|
EdgeInterface | Provides a common interface for edges that DataProducers can work with. |