class EntityQueryExclusive in GraphQL 8.3
Query entities of the same type without the context's entity.
Plugin annotation
@GraphQLField(
id = "entity_query_exclusive",
name = "entityQueryExclusive",
secure = true,
type = "EntityQueryResult!",
parents = {"Entity"},
arguments = {
"filter" = "EntityQueryFilterInput",
"sort" = "[EntityQuerySortInput]",
"offset" = {
"type" = "Int",
"default" = 0
},
"limit" = {
"type" = "Int",
"default" = 10
},
"revisions" = {
"type" = "EntityQueryRevisionMode",
"default" = "default"
},
"bundles" = {
"type" = "EntityQueryBundleMode",
"default" = "same"
}
}
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\graphql\Plugin\GraphQL\Fields\FieldPluginBase implements FieldPluginInterface uses ArgumentAwarePluginTrait, CacheablePluginTrait, DeprecatablePluginTrait, DescribablePluginTrait, TypedPluginTrait
- class \Drupal\graphql_core\Plugin\GraphQL\Fields\EntityQuery\EntityQuery implements ContainerFactoryPluginInterface uses DependencySerializationTrait
- class \Drupal\graphql_core\Plugin\GraphQL\Fields\Entity\EntityQueryExclusive
- class \Drupal\graphql_core\Plugin\GraphQL\Fields\EntityQuery\EntityQuery implements ContainerFactoryPluginInterface uses DependencySerializationTrait
- class \Drupal\graphql\Plugin\GraphQL\Fields\FieldPluginBase implements FieldPluginInterface uses ArgumentAwarePluginTrait, CacheablePluginTrait, DeprecatablePluginTrait, DescribablePluginTrait, TypedPluginTrait
Expanded class hierarchy of EntityQueryExclusive
File
- modules/
graphql_core/ src/ Plugin/ GraphQL/ Fields/ Entity/ EntityQueryExclusive.php, line 43
Namespace
Drupal\graphql_core\Plugin\GraphQL\Fields\EntityView source
class EntityQueryExclusive extends EntityQuery {
/**
* {@inheritdoc}
*/
protected function getBaseQuery($value, array $args, ResolveContext $context, ResolveInfo $info) {
if ($value instanceof ContentEntityInterface) {
$type = $value
->getEntityType();
$id = $type
->getKey('id');
// Filter out the current entity.
$query = parent::getBaseQuery($value, $args, $context, $info);
$query
->condition($id, $value
->id(), '<>');
if (array_key_exists('bundles', $args)) {
$query = $this
->applyBundleMode($query, $value, $args['bundles']);
}
return $query;
}
}
/**
* Apply the specified bundle filtering mode to the query.
*
* @param \Drupal\Core\Entity\Query\QueryInterface $query
* The entity query object.
* @param \Drupal\Core\Entity\ContentEntityInterface $value
* The parent entity object.
* @param mixed $mode
* The revision query mode.
*
* @return \Drupal\Core\Entity\Query\QueryInterface The entity query object.
* The entity query object.
*/
protected function applyBundleMode(QueryInterface $query, ContentEntityInterface $value, $mode) {
if ($mode === 'same') {
$type = $value
->getEntityType();
if ($type
->hasKey('bundle')) {
$bundle = $type
->getKey('bundle');
$query
->condition($bundle, $value
->bundle());
}
}
return $query;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ArgumentAwarePluginTrait:: |
protected | function | Builds an argument's default value. | |
ArgumentAwarePluginTrait:: |
protected | function | Builds an argument's description. | |
ArgumentAwarePluginTrait:: |
protected | function | Builds the list of arguments. | |
ArgumentAwarePluginTrait:: |
protected | function | Builds an argument's type. | |
CacheablePluginTrait:: |
protected | function | ||
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
DeprecatablePluginTrait:: |
protected | function | ||
DescribablePluginTrait:: |
protected | function | ||
EntityQuery:: |
protected | property | The entity type manager. | |
EntityQuery:: |
protected | function | Apply the specified filter conditions to the query. | |
EntityQuery:: |
protected | function | Apply the specified revision filtering mode to the query. | |
EntityQuery:: |
protected | function | Apply the specified sort directives to the query. | |
EntityQuery:: |
protected | function | Recursively builds the filter condition groups. | |
EntityQuery:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
EntityQuery:: |
protected | function |
Retrieve the list of cache dependencies for a given value and arguments. Overrides FieldPluginBase:: |
|
EntityQuery:: |
protected | function | Retrieve the target entity type of this plugin. | |
EntityQuery:: |
protected | function | Create the full entity query for the plugin's entity type. | |
EntityQuery:: |
protected | function | Retrieves an arbitrary value to write into the query metadata. | 1 |
EntityQuery:: |
protected | function | Checks if an operator is a null operator. | |
EntityQuery:: |
protected | function | Checks if an operator is a range operator. | |
EntityQuery:: |
protected | function | Checks if an operator is a unary operator. | |
EntityQuery:: |
public | function |
Retrieve the list of field values. Overrides FieldPluginBase:: |
|
EntityQuery:: |
public | function |
EntityQuery constructor. Overrides PluginBase:: |
|
EntityQueryExclusive:: |
protected | function | Apply the specified bundle filtering mode to the query. | |
EntityQueryExclusive:: |
protected | function |
Create the basic entity query for the plugin's entity type. Overrides EntityQuery:: |
|
FieldPluginBase:: |
protected | property | Static cache for `isLanguageAwareField()` | |
FieldPluginBase:: |
protected | property | The language context service. | |
FieldPluginBase:: |
protected | property | The renderer service. | 1 |
FieldPluginBase:: |
public static | function |
Overrides FieldPluginInterface:: |
|
FieldPluginBase:: |
public | function |
Returns the plugin's type or field definition for the schema. Overrides FieldPluginInterface:: |
|
FieldPluginBase:: |
protected | function | Get the language context instance. | |
FieldPluginBase:: |
protected | function | Get the renderer service. | |
FieldPluginBase:: |
protected | function | Indicator if the field is language aware. | 1 |
FieldPluginBase:: |
public | function | 1 | |
FieldPluginBase:: |
protected | function | ||
FieldPluginBase:: |
protected | function | Unwrap the resolved values. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
TypedPluginTrait:: |
protected | function |