Skip to content

Commit

Permalink
Add DataOrder to GetProjectionDataRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
jesko-plitt committed Feb 7, 2023
1 parent c1935c8 commit 05911f5
Show file tree
Hide file tree
Showing 5 changed files with 254 additions and 81 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v1.0.0-alpha.12

- (feature) Add `DataOrder` to `GetProjectionDataRequest`

# v1.0.0-alpha.11

- (bug) Fix `DataFilter`
Expand Down
6 changes: 6 additions & 0 deletions delivery/get_projection_data.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ message GetProjectionDataRequest {
int32 page = 5;
bool returnEmptyDataIfNotFound = 6;
DataFilter filter = 7;
repeated DataOrder order = 8;
}

message DataOrder {
string field = 1;
bool descending = 2;
}

message DataFilter {
Expand Down
Loading

0 comments on commit 05911f5

Please sign in to comment.