Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ public enum FilterOperatorType {
IN,
NOT_IN,
CONTAINS_KEY,
CONTAINS_KEY_VALUE;
CONTAINS_KEY_VALUE,
CONTAINS_KEY_LIKE;

public static final String TYPE_NAME = "FilterOperatorType";
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ public Single<Operator> convert(FilterOperatorType filterOperatorType) {
return Single.just(Operator.CONTAINS_KEY);
case CONTAINS_KEY_VALUE:
return Single.just(Operator.CONTAINS_KEYVALUE);
case CONTAINS_KEY_LIKE:
return Single.just(Operator.CONTAINS_KEY_LIKE);
default:
return Single.error(
new UnknownFormatConversionException(
Expand Down
2 changes: 1 addition & 1 deletion hypertrace-core-graphql-platform/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
api("org.hypertrace.core.grpcutils:grpc-client-utils:0.7.4")
api("org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.7.4")
api("org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.7.4")
api("org.hypertrace.gateway.service:gateway-service-api:0.2.0")
api("org.hypertrace.gateway.service:gateway-service-api:0.2.10")
api("org.hypertrace.core.attribute.service:caching-attribute-service-client:0.13.6")

api("com.google.inject:guice:5.1.0")
Expand Down