*/ class FeatureController extends BaseController { final public const ROUTE_SLUG = 'id'; /** * Apply the query builder to the index query. * * @param Builder $builder * @param array $args * @return Builder */ public function index(Builder $builder, mixed $value, mixed $root, array $args, GraphQLContext $context, ResolveInfo $resolveInfo): Builder { return $builder->where(Feature::ATTRIBUTE_SCOPE, FeatureConstants::NULL_SCOPE); } }