Spaces:
Running
Running
File size: 3,376 Bytes
b110593 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
syntax = "proto3";
package weaviate.v1;
import "google/protobuf/struct.proto";
option go_package = "github.com/weaviate/weaviate/grpc/generated;protocol";
option java_package = "io.weaviate.client.grpc.protocol.v1";
option java_outer_classname = "WeaviateProtoBase";
enum ConsistencyLevel {
CONSISTENCY_LEVEL_UNSPECIFIED = 0;
CONSISTENCY_LEVEL_ONE = 1;
CONSISTENCY_LEVEL_QUORUM = 2;
CONSISTENCY_LEVEL_ALL = 3;
}
message NumberArrayProperties {
repeated double values = 1 [deprecated = true]; // will be removed in the future, use vector_bytes
string prop_name = 2;
bytes values_bytes = 3;
}
message IntArrayProperties {
repeated int64 values = 1;
string prop_name = 2;
}
message TextArrayProperties {
repeated string values = 1;
string prop_name = 2;
}
message BooleanArrayProperties {
repeated bool values = 1;
string prop_name = 2;
}
message ObjectPropertiesValue {
google.protobuf.Struct non_ref_properties = 1;
repeated NumberArrayProperties number_array_properties = 2;
repeated IntArrayProperties int_array_properties = 3;
repeated TextArrayProperties text_array_properties = 4;
repeated BooleanArrayProperties boolean_array_properties = 5;
repeated ObjectProperties object_properties = 6;
repeated ObjectArrayProperties object_array_properties = 7;
}
message ObjectArrayProperties {
repeated ObjectPropertiesValue values = 1;
string prop_name = 2;
}
message ObjectProperties {
ObjectPropertiesValue value = 1;
string prop_name = 2;
}
message TextArray {
repeated string values = 1;
}
message IntArray {
repeated int64 values = 1;
}
message NumberArray {
repeated double values = 1;
}
message BooleanArray {
repeated bool values = 1;
}
message Filters {
enum Operator {
OPERATOR_UNSPECIFIED = 0;
OPERATOR_EQUAL = 1;
OPERATOR_NOT_EQUAL = 2;
OPERATOR_GREATER_THAN = 3;
OPERATOR_GREATER_THAN_EQUAL = 4;
OPERATOR_LESS_THAN = 5;
OPERATOR_LESS_THAN_EQUAL = 6;
OPERATOR_AND = 7;
OPERATOR_OR = 8;
OPERATOR_WITHIN_GEO_RANGE = 9;
OPERATOR_LIKE = 10;
OPERATOR_IS_NULL = 11;
OPERATOR_CONTAINS_ANY = 12;
OPERATOR_CONTAINS_ALL = 13;
}
Operator operator = 1;
// protolint:disable:next REPEATED_FIELD_NAMES_PLURALIZED
repeated string on = 2 [deprecated = true]; // will be removed in the future, use path
repeated Filters filters = 3;
oneof test_value {
string value_text = 4;
int64 value_int = 5;
bool value_boolean = 6;
double value_number = 7;
TextArray value_text_array = 9;
IntArray value_int_array = 10;
BooleanArray value_boolean_array = 11;
NumberArray value_number_array = 12;
GeoCoordinatesFilter value_geo = 13;
};
FilterTarget target = 20; // leave space for more filter values
}
message FilterReferenceSingleTarget {
string on = 1;
FilterTarget target = 2;
}
message FilterReferenceMultiTarget {
string on = 1;
FilterTarget target = 2;
string target_collection = 3;
}
message FilterTarget {
oneof target{
string property = 1;
FilterReferenceSingleTarget single_target = 2;
FilterReferenceMultiTarget multi_target = 3;
};
}
message GeoCoordinatesFilter {
float latitude = 1;
float longitude = 2;
float distance = 3;
}
|