diff --git a/api-docs/influxdb3/core/v3/ref.yml b/api-docs/influxdb3/core/v3/ref.yml index c27355b9c..b905792d6 100644 --- a/api-docs/influxdb3/core/v3/ref.yml +++ b/api-docs/influxdb3/core/v3/ref.yml @@ -1844,12 +1844,12 @@ components: QueryRequestObject: type: object properties: - database: + db: description: | The name of the database to query. - Required if the query (`query_str`) doesn't specify the database. + Required if the query (`q`) doesn't specify the database. type: string - query_str: + q: description: The query to execute. type: string format: @@ -1868,11 +1868,11 @@ components: type: object additionalProperties: true required: - - database - - query_str + - db + - q example: - database: mydb - query_str: SELECT * FROM mytable + db: mydb + q: SELECT * FROM mytable format: json params: {} CreateDatabaseRequest: diff --git a/content/influxdb3/enterprise/get-started/multi-server.md b/content/influxdb3/enterprise/get-started/multi-server.md index 56da9360d..130986759 100644 --- a/content/influxdb3/enterprise/get-started/multi-server.md +++ b/content/influxdb3/enterprise/get-started/multi-server.md @@ -19,7 +19,6 @@ Configure nodes with specific _modes_ (ingest, query, process, compact) to optim ## Prerequisites - Shared object store -- Network connectivity between nodes ## Basic multi-node setup @@ -525,4 +524,4 @@ Replace the following placeholders with your values: prevText="Set up InfluxDB" next="/influxdb3/enterprise/get-started/write/" nextText="Write data" -%}} \ No newline at end of file +%}}