factory = $factory; $this->solver = $solver; $this->repositoryQuery = $repositoryQuery; $this->store = $store; $this->fieldDefinition = $fieldDefinition; } public function getFactory(): ProductCategoryFactory { return $this->factory; } public function getSolver(): ProductCategorySolver { return $this->solver; } public function getRepositoryQuery(): ProductCategoryRepositoryQuery { return $this->repositoryQuery; } public function getStore(): ProductCategoryStore { $this->store->resetContext(); return $this->store; } public function getFieldDefinition(): ProductCategoryFieldDefinition { return $this->fieldDefinition; } }