You are here

protected static function FieldResolver::isCandidateDefinitionProperty in JSON:API 8.2

Same name and namespace in other branches
  1. 8 src/Context/FieldResolver.php \Drupal\jsonapi\Context\FieldResolver::isCandidateDefinitionProperty()

Determines if a path part targets a field property, not a subsequent field.

Parameters

string $part: The path part.

\Drupal\Core\TypedData\ComplexDataDefinitionInterface[] $candidate_definitions: A list of targeted field item definitions which are specified by the path.

Return value

bool TRUE if the part is a property of one of the candidate definitions, FALSE otherwise.

1 call to FieldResolver::isCandidateDefinitionProperty()
FieldResolver::resolveInternalEntityQueryPath in src/Context/FieldResolver.php
Resolves external field expressions into entity query compatible paths.

File

src/Context/FieldResolver.php, line 706

Class

FieldResolver
A service that evaluates external path expressions against Drupal fields.

Namespace

Drupal\jsonapi\Context

Code

protected static function isCandidateDefinitionProperty($part, array $candidate_definitions) {
  $part = static::getPathPartPropertyName($part);
  foreach ($candidate_definitions as $definition) {
    if ($definition
      ->getPropertyDefinition($part)) {
      return TRUE;
    }
  }
  return FALSE;
}