1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- return [
- [
- 'name' => 'customAttributeMetadata',
- 'args' =>
- [
- [
- 'name' => 'attributes',
- 'description' => '',
- 'type' =>
- [
- 'kind' => 'NON_NULL',
- 'name' => null,
- 'ofType' =>
- [
- 'kind' => 'LIST',
- 'name' => null,
- ]
- ],
- 'defaultValue' => null,
- ]
- ]
- ],
- [
- 'name' => 'testItem',
- 'args' =>
- [
- [
- 'name' => 'id',
- 'description' => '',
- 'type' =>
- [
- 'kind' => 'NON_NULL',
- 'name' => null,
- 'ofType' =>
- [
- 'kind' => 'SCALAR',
- 'name' => 'Int',
- ]
- ],
- 'defaultValue' => null,
- ]
- ]
- ],
- [
- 'name' => 'urlResolver',
- 'args' =>
- [
- [
- 'name' => 'url',
- 'description' => '',
- 'type' =>
- [
- 'kind' => 'NON_NULL',
- 'name' => null,
- 'ofType' =>
- [
- 'kind' => 'SCALAR',
- 'name' => 'String',
- ]
- ],
- 'defaultValue' => null,
- ]
- ]
- ]
- ];
|