diff --git a/Source/Runtime/Projections/Store.proto b/Source/Runtime/Projections/Store.proto index 126305a..79f88b1 100644 --- a/Source/Runtime/Projections/Store.proto +++ b/Source/Runtime/Projections/Store.proto @@ -39,5 +39,6 @@ message GetAllResponse { // Represents the Projections service service Projections { rpc GetOne(GetOneRequest) returns(GetOneResponse); - rpc GetAll(GetAllRequest) returns(GetAllResponse); + rpc GetAll(GetAllRequest) returns(GetAllResponse); // DEPRECATED: This is superseeded by GetAllInBatches + rpc GetAllInBatches(GetAllRequest) returns(stream GetAllResponse); }