The trait ApiSkeletons\Doctrine\OR...ttribute\ExcludeFilters requires the property $value which is not provided by ApiSkeletons\Doctrine\ORM\GraphQL\Attribute\Field.
Loading history...
17
18
/**
19
* @param Filters[] $excludeFilters
20
* @param Filters[] $includeFilters
21
*/
22
public function __construct(
23
protected string $group = 'default',
24
protected string|null $hydratorStrategy = null,
25
protected string|null $description = null,
26
protected string|null $type = null,
27
private array $excludeFilters = [],
28
private array $includeFilters = [],
29
) {
30
}
31
32
public function getGroup(): string
33
{
34
return $this->group;
35
}
36
37
public function getHydratorStrategy(): string|null