mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 12:56:05 +03:00
Improve introspection types + new getIntrospectionQuery()
This adds a new function `getIntrospectionQuery()` which allows for some minor configuration over the resulting query text: to exclude descriptions if your use case does not require them. ref: graphql/graphql-js#1113
This commit is contained in:
parent
6e358eb26c
commit
ff63e07b05
@ -37,11 +37,25 @@ class Introspection
|
||||
private static $map = [];
|
||||
|
||||
/**
|
||||
* Options:
|
||||
* - descriptions
|
||||
* Whether to include descriptions in the introspection result.
|
||||
* Default: true
|
||||
*
|
||||
* @param array $options
|
||||
* @return string
|
||||
*/
|
||||
public static function getIntrospectionQuery($includeDescription = true)
|
||||
public static function getIntrospectionQuery($options = [])
|
||||
{
|
||||
$withDescription = <<<'EOD'
|
||||
if (is_bool($options)) {
|
||||
trigger_error('Calling Introspection::getIntrospectionQuery(boolean) is deprecated. Please use Introspection::getIntrospectionQuery(["descriptions" => boolean]).', E_USER_DEPRECATED);
|
||||
$descriptions = $options;
|
||||
} else {
|
||||
$descriptions = !array_key_exists('descriptions', $options) || $options['descriptions'] === true;
|
||||
}
|
||||
$descriptionField = $descriptions ? 'description' : '';
|
||||
|
||||
return <<<EOD
|
||||
query IntrospectionQuery {
|
||||
__schema {
|
||||
queryType { name }
|
||||
@ -52,7 +66,7 @@ class Introspection
|
||||
}
|
||||
directives {
|
||||
name
|
||||
description
|
||||
{$descriptionField}
|
||||
locations
|
||||
args {
|
||||
...InputValue
|
||||
@ -64,10 +78,10 @@ class Introspection
|
||||
fragment FullType on __Type {
|
||||
kind
|
||||
name
|
||||
description
|
||||
{$descriptionField}
|
||||
fields(includeDeprecated: true) {
|
||||
name
|
||||
description
|
||||
{$descriptionField}
|
||||
args {
|
||||
...InputValue
|
||||
}
|
||||
@ -85,7 +99,7 @@ class Introspection
|
||||
}
|
||||
enumValues(includeDeprecated: true) {
|
||||
name
|
||||
description
|
||||
{$descriptionField}
|
||||
isDeprecated
|
||||
deprecationReason
|
||||
}
|
||||
@ -96,7 +110,7 @@ class Introspection
|
||||
|
||||
fragment InputValue on __InputValue {
|
||||
name
|
||||
description
|
||||
{$descriptionField}
|
||||
type { ...TypeRef }
|
||||
defaultValue
|
||||
}
|
||||
@ -134,95 +148,6 @@ class Introspection
|
||||
}
|
||||
}
|
||||
EOD;
|
||||
$withoutDescription = <<<'EOD'
|
||||
query IntrospectionQuery {
|
||||
__schema {
|
||||
queryType { name }
|
||||
mutationType { name }
|
||||
subscriptionType { name }
|
||||
types {
|
||||
...FullType
|
||||
}
|
||||
directives {
|
||||
name
|
||||
locations
|
||||
args {
|
||||
...InputValue
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fragment FullType on __Type {
|
||||
kind
|
||||
name
|
||||
fields(includeDeprecated: true) {
|
||||
name
|
||||
args {
|
||||
...InputValue
|
||||
}
|
||||
type {
|
||||
...TypeRef
|
||||
}
|
||||
isDeprecated
|
||||
deprecationReason
|
||||
}
|
||||
inputFields {
|
||||
...InputValue
|
||||
}
|
||||
interfaces {
|
||||
...TypeRef
|
||||
}
|
||||
enumValues(includeDeprecated: true) {
|
||||
name
|
||||
isDeprecated
|
||||
deprecationReason
|
||||
}
|
||||
possibleTypes {
|
||||
...TypeRef
|
||||
}
|
||||
}
|
||||
|
||||
fragment InputValue on __InputValue {
|
||||
name
|
||||
type { ...TypeRef }
|
||||
defaultValue
|
||||
}
|
||||
|
||||
fragment TypeRef on __Type {
|
||||
kind
|
||||
name
|
||||
ofType {
|
||||
kind
|
||||
name
|
||||
ofType {
|
||||
kind
|
||||
name
|
||||
ofType {
|
||||
kind
|
||||
name
|
||||
ofType {
|
||||
kind
|
||||
name
|
||||
ofType {
|
||||
kind
|
||||
name
|
||||
ofType {
|
||||
kind
|
||||
name
|
||||
ofType {
|
||||
kind
|
||||
name
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
EOD;
|
||||
return $includeDescription ? $withDescription : $withoutDescription;
|
||||
}
|
||||
|
||||
public static function getTypes()
|
||||
|
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
namespace GraphQL\Tests\Type;
|
||||
|
||||
use GraphQL\Error\Error;
|
||||
use GraphQL\GraphQL;
|
||||
use GraphQL\Language\SourceLocation;
|
||||
use GraphQL\Schema;
|
||||
|
@ -28,7 +28,7 @@ class IntrospectionTest extends \PHPUnit_Framework_TestCase
|
||||
])
|
||||
]);
|
||||
|
||||
$request = Introspection::getIntrospectionQuery(false);
|
||||
$request = Introspection::getIntrospectionQuery(['descriptions' => false]);
|
||||
$expected = array (
|
||||
'data' =>
|
||||
array (
|
||||
|
@ -53,7 +53,7 @@ abstract class AbstractQuerySecurityTest extends \PHPUnit_Framework_TestCase
|
||||
|
||||
protected function assertIntrospectionQuery($maxExpected)
|
||||
{
|
||||
$query = Introspection::getIntrospectionQuery(true);
|
||||
$query = Introspection::getIntrospectionQuery();
|
||||
|
||||
$this->assertMaxValue($query, $maxExpected);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user