factory = $factory; $this->solver = $solver; $this->repositoryQuery = $repositoryQuery; $this->store = $store; $this->resolver = $resolver; $this->builder = $builder; $this->transformer = $transformer; $this->fieldDefinition = $fieldDefinition; } public static function getEntityFqcn() { return OrderShop::class; } public function getFactory(): OrderShopFactory { return $this->factory; } public function getSolver(): OrderShopSolver { return $this->solver; } public function getRepositoryQuery(): OrderShopRepositoryQuery { return $this->repositoryQuery; } public function getStore(): OrderShopStore { $this->store->resetContext(); return $this->store; } public function getResolver(): OrderShopResolver { return $this->resolver; } public function getBuilder(): OrderShopBuilder { return $this->builder; } public function getTransformer(): OrderShopTransformer { return $this->transformer; } public function getFieldDefinition(): OrderShopFieldDefinition { return $this->fieldDefinition; } }