Skip to content
Snippets Groups Projects
Verified Commit 96e7a1fb authored by Timm Fitschen's avatar Timm Fitschen
Browse files

DOC: add doc strings to entity/v1.main.proto

parent fd60795f
No related branches found
No related tags found
2 merge requests!10Release 0.3,!9WIP: SELECT for GRPC API
Pipeline #30633 passed
...@@ -540,7 +540,9 @@ message FindQueryResult { ...@@ -540,7 +540,9 @@ message FindQueryResult {
// A single result row of a SELECT query // A single result row of a SELECT query
message SelectQueryRow { message SelectQueryRow {
// The cells of the table row contain the value of the SELECT'ed fields. // The cells of the table row contain the value of the SELECT'ed fields. The
// order of the cells follows the order of the columns of the
// SelectQueryHeader.
repeated Value cells = 2; repeated Value cells = 2;
} }
...@@ -552,6 +554,8 @@ message SelectQueryColumn { ...@@ -552,6 +554,8 @@ message SelectQueryColumn {
// The header line of the result of a SELECT query // The header line of the result of a SELECT query
message SelectQueryHeader { message SelectQueryHeader {
// List of columns in this table. The order defines the order of the cells in
// each of the SelectQueryRows.
repeated SelectQueryColumn columns = 1; repeated SelectQueryColumn columns = 1;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment