From 48c7d41d3d22c79e436ee2ecf7dd7b8c103c5cc4 Mon Sep 17 00:00:00 2001 From: ccamel Date: Sat, 13 Jan 2024 10:46:50 +0100 Subject: [PATCH] docs(logic): re-generate documentation --- docs/proto/logic.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/proto/logic.md b/docs/proto/logic.md index 128f46855..de99954e3 100644 --- a/docs/proto/logic.md +++ b/docs/proto/logic.md @@ -352,7 +352,8 @@ Answer represents the answer to a logic query. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `success` | [bool](#bool) | | result is the result of the query. | +| `success` | [bool](#bool) | | success specifies if the query was successful. | +| `error` | [string](#string) | | error specifies the error message if the query caused an error. | | `has_more` | [bool](#bool) | | has_more specifies if there are more solutions than the ones returned. | | `variables` | [string](#string) | repeated | variables represent all the variables in the query. | | `results` | [Result](#logic.v1beta2.Result) | repeated | results represent all the results of the query. |