Skip to content

Commit

Permalink
add logical operator in hypertrace gql common schema (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhubam authored Feb 7, 2024
1 parent dd582cd commit 504a2f7
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package org.hypertrace.core.graphql.common.schema.operator;

import graphql.annotations.annotationTypes.GraphQLDescription;
import graphql.annotations.annotationTypes.GraphQLName;

@GraphQLDescription("Logical operator describing how to combine multiple independent clauses")
@GraphQLName(LogicalOperator.TYPE_NAME)
public enum LogicalOperator {
AND,
OR;
static final String TYPE_NAME = "LogicalOperator";
}

0 comments on commit 504a2f7

Please sign in to comment.