1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\GraphQl;
- use Magento\TestFramework\TestCase\GraphQlAbstract;
- class IntrospectionQueryTest extends GraphQlAbstract
- {
- /**
- * Tests that Introspection is allowed by default
- * @SuppressWarnings(PHPMD.ExcessiveMethodLength)
- */
- public function testIntrospectionQuery()
- {
- $query
- = <<<QUERY
- query IntrospectionQuery {
- __schema {
- queryType { name }
- types{
- ...FullType
- }
- }
- }
- fragment FullType on __Type{
- name
- kind
- fields(includeDeprecated:true){
- name
- args{
- ...InputValue
- }
- }
- }
-
- fragment TypeRef on __Type {
- kind
- name
- ofType{
- kind
- name
- }
- }
- fragment InputValue on __InputValue {
- name
- description
- type { ...TypeRef }
- defaultValue
- }
- QUERY;
- $this->assertArrayHasKey('__schema', $this->graphQlQuery($query));
- }
- }
|