From 96e7a1fb667ed1bb3b2602af6c69724519bf5118 Mon Sep 17 00:00:00 2001
From: Timm Fitschen <t.fitschen@indiscale.com>
Date: Fri, 18 Nov 2022 13:57:19 +0100
Subject: [PATCH] DOC: add doc strings to entity/v1.main.proto

---
 proto/caosdb/entity/v1/main.proto | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/proto/caosdb/entity/v1/main.proto b/proto/caosdb/entity/v1/main.proto
index 6893d31..11fd82a 100644
--- a/proto/caosdb/entity/v1/main.proto
+++ b/proto/caosdb/entity/v1/main.proto
@@ -540,7 +540,9 @@ message FindQueryResult {
 
 // A single result row of a SELECT query
 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;
 }
 
@@ -552,6 +554,8 @@ message SelectQueryColumn {
 
 // The header line of the result of a SELECT query
 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;
 }
 
-- 
GitLab