14 lines
296 B
PHP
14 lines
296 B
PHP
|
<?php
|
||
|
use GraphQL\Type\Definition\ObjectType;
|
||
|
use GraphQL\Type\Definition\Type;
|
||
|
|
||
|
$queryType = new ObjectType([
|
||
|
'name' => 'Query',
|
||
|
'fields' => [
|
||
|
'sitekey' => [
|
||
|
'type' => Type::string(),
|
||
|
'resolve' => fn ($rootValue, $args) => $sitekey,
|
||
|
],
|
||
|
],
|
||
|
]);
|