You are here

QueryConjunction.php in GraphQL 8.3

File

modules/graphql_core/src/Plugin/GraphQL/Enums/Common/QueryConjunction.php
View 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

Namesort descending Description
QueryConjunction Plugin annotation @GraphQLEnum( id = "query_conjunction", name = "QueryConjunction", values = { "AND" = "AND", "OR" = "OR" } )