protected function LanguageSwitchLinkActive::resolveValues in GraphQL 8.3
Retrieve the list of field values.
Always returns a list of field values. Even for single value fields. Single/multi field handling is responsibility of the base class.
Parameters
mixed $value: The current object value.
array $args: Field arguments.
$context: The resolve context.
\GraphQL\Type\Definition\ResolveInfo $info: The resolve info object.
Return value
\Generator The value generator.
Overrides FieldPluginBase::resolveValues
File
- modules/
graphql_core/ src/ Plugin/ GraphQL/ Fields/ LanguageSwitch/ LanguageSwitchLinkActive.php, line 23
Class
- LanguageSwitchLinkActive
- Plugin annotation @GraphQLField( id = "language_switch_link_active", secure = true, name = "active", type = "Boolean", parents = {"LanguageSwitchLink"} )
Namespace
Drupal\graphql_core\Plugin\GraphQL\Fields\LanguageSwitchCode
protected function resolveValues($value, array $args, ResolveContext $context, ResolveInfo $info) {
/** @var \Drupal\Core\Language\LanguageInterface $context */
$context = $value['context'];
/** @var \Drupal\Core\Language\LanguageInterface $language */
$language = $value['link']['language'];
// Check if the link's language code matches the language from the current
// url context used for retrieving the language switch links.
(yield $context
->getId() === $language
->getId());
}