1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\TestModuleGraphQlQuery\Model\Resolver;
- use Magento\Framework\GraphQl\Schema\Type\ResolveInfo;
- use Magento\Framework\GraphQl\Config\Element\Field;
- use Magento\Framework\GraphQl\Query\ResolverInterface;
- class Item implements ResolverInterface
- {
- /**
- * @inheritdoc
- */
- public function resolve(
- Field $field,
- $context,
- ResolveInfo $info,
- array $value = null,
- array $args = null
- ) {
- $id = 0;
- foreach ($args as $key => $argValue) {
- if ($key === "id") {
- $id = (int)$argValue;
- }
- }
- $itemData = [
- 'item_id' => $id,
- 'name' => "itemName"
- ];
- return $itemData;
- }
- }
|