graphql_compose-1.0.0-beta20/modules/graphql_compose_users/graphql_compose_users.module
modules/graphql_compose_users/graphql_compose_users.module
<?php
/**
* @file
* GraphQL Compose users module file.
*/
declare(strict_types=1);
/**
* Implements hook_graphql_compose_entity_base_fields_alter().
*/
function graphql_compose_users_graphql_compose_entity_base_fields_alter(array &$fields, string $entity_type_id): void {
if ($entity_type_id === 'node') {
$fields['uid'] = [
'field_type' => 'entity_owner',
'name_sdl' => 'author',
'required' => FALSE,
'description' => t('The author of this content.'),
];
}
}
