-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3703 from magento-engcom/graphql-develop-prs
[EngCom] Public Pull Requests - GraphQL
- Loading branch information
Showing
34 changed files
with
1,024 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
app/code/Magento/DirectoryGraphQl/Model/Resolver/Countries.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Magento\DirectoryGraphQl\Model\Resolver; | ||
|
||
use Magento\Framework\GraphQl\Schema\Type\ResolveInfo; | ||
use Magento\Framework\GraphQl\Config\Element\Field; | ||
use Magento\Framework\GraphQl\Query\ResolverInterface; | ||
use Magento\Framework\Reflection\DataObjectProcessor; | ||
use Magento\Directory\Api\CountryInformationAcquirerInterface; | ||
use Magento\Directory\Api\Data\CountryInformationInterface; | ||
|
||
/** | ||
* Countries field resolver, used for GraphQL request processing. | ||
*/ | ||
class Countries implements ResolverInterface | ||
{ | ||
/** | ||
* @var DataObjectProcessor | ||
*/ | ||
private $dataProcessor; | ||
|
||
/** | ||
* @var CountryInformationAcquirerInterface | ||
*/ | ||
private $countryInformationAcquirer; | ||
|
||
/** | ||
* @param DataObjectProcessor $dataProcessor | ||
* @param CountryInformationAcquirerInterface $countryInformationAcquirer | ||
*/ | ||
public function __construct( | ||
DataObjectProcessor $dataProcessor, | ||
CountryInformationAcquirerInterface $countryInformationAcquirer | ||
) { | ||
$this->dataProcessor = $dataProcessor; | ||
$this->countryInformationAcquirer = $countryInformationAcquirer; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function resolve( | ||
Field $field, | ||
$context, | ||
ResolveInfo $info, | ||
array $value = null, | ||
array $args = null | ||
) { | ||
$countries = $this->countryInformationAcquirer->getCountriesInfo(); | ||
|
||
$output = []; | ||
foreach ($countries as $country) { | ||
$output[] = $this->dataProcessor->buildOutputDataArray($country, CountryInformationInterface::class); | ||
} | ||
|
||
return $output; | ||
} | ||
} |
Oops, something went wrong.