PersistedQueryPluginThree.php in GraphQL 8.4
File
tests/modules/graphql_persisted_queries_test/src/Plugin/GraphQL/PersistedQuery/PersistedQueryPluginThree.php
View source
<?php
namespace Drupal\graphql_persisted_queries_test\Plugin\GraphQL\PersistedQuery;
use Drupal\graphql\PersistedQuery\PersistedQueryPluginBase;
use GraphQL\Server\OperationParams;
class PersistedQueryPluginThree extends PersistedQueryPluginBase {
public function getQuery($id, OperationParams $operation) {
$queryMap = $this
->queryMap();
return $queryMap[$id] ?? NULL;
}
protected function queryMap() : array {
return [
'query_1' => "query { field_three { url } }",
'query_2' => "query { field_three { url\ntitle } }",
];
}
}
Classes
Name |
Description |
PersistedQueryPluginThree |
@PersistedQuery(
id = "persisted_query_plugin_three",
label = "Persisted Query Three",
description = "This is the third persisted query plugin"
) |