QueryConjunction |
modules/graphql_core/src/Plugin/GraphQL/Enums/Common/QueryConjunction.php |
Plugin annotation
@GraphQLEnum(
id = "query_conjunction",
name = "QueryConjunction",
values = {
"AND" = "AND",
"OR" = "OR"
}
) |
QueryOperator |
modules/graphql_core/src/Plugin/GraphQL/Enums/Common/QueryOperator.php |
Plugin annotation
@GraphQLEnum(
id = "query_operator",
name = "QueryOperator",
values = {
"EQUAL" = "=",
"NOT_EQUAL" = "<>",
"SMALLER_THAN" = "<",
"SMALLER_THAN_OR_EQUAL" = "<=",
"GREATER_THAN" = ">",
… |
SortOrder |
modules/graphql_core/src/Plugin/GraphQL/Enums/Common/SortOrder.php |
Plugin annotation
@GraphQLEnum(
id = "sort_order",
name = "SortOrder",
values = {
"ASC" = "ASC",
"DESC" = "DESC"
}
) |