QueryConjunction.php in GraphQL 8.3
File
modules/graphql_core/src/Plugin/GraphQL/Enums/Common/QueryConjunction.phpView source
<?php
namespace Drupal\graphql_core\Plugin\GraphQL\Enums\Common;
use Drupal\graphql\Plugin\GraphQL\Enums\EnumPluginBase;
/**
* @GraphQLEnum(
* id = "query_conjunction",
* name = "QueryConjunction",
* values = {
* "AND" = "AND",
* "OR" = "OR"
* }
* )
*/
class QueryConjunction extends EnumPluginBase {
}
Classes
Name | Description |
---|---|
QueryConjunction | Plugin annotation @GraphQLEnum( id = "query_conjunction", name = "QueryConjunction", values = { "AND" = "AND", "OR" = "OR" } ) |