diff --git a/modules/ROOT/pages/clauses/listing-settings.adoc b/modules/ROOT/pages/clauses/listing-settings.adoc index df859d1cb..3b8490dfe 100644 --- a/modules/ROOT/pages/clauses/listing-settings.adoc +++ b/modules/ROOT/pages/clauses/listing-settings.adoc @@ -180,13 +180,13 @@ For a full list of all available settings in Neo4j, refer to link:{neo4j-docs-ba == Listing settings with filtering on output columns The listed settings can be filtered by using the `WHERE` clause. -For example, the following query returns the name, value, and description of the first three settings starting with 'dbms': +For example, the following query returns the name, value, and description of the first three settings starting with 'server': .Query [source, cypher] ---- SHOW SETTINGS YIELD name, value, description -WHERE name STARTS WITH 'dbms' +WHERE name STARTS WITH 'server' RETURN name, value, description LIMIT 3 ---- @@ -196,17 +196,17 @@ LIMIT 3 |=== | name | value | description -| "dbms.cluster.catchup.client_inactivity_timeout" -| "10m" -| "The catchup protocol times out if the given duration elapses with no network activity. Every message received by the client from the server extends the timeout duration." +| "server.backup.enabled" +| "true" +| "Enable support for running online backups." -| "dbms.cluster.discovery.endpoints" -| null -| "A comma-separated list of endpoints that a server should contact in order to discover other cluster members. Typically, all cluster members, including the current server, must be specified in this list. The setting configures the endpoints for Discovery service V1." +| "server.backup.exec_connector.command" +| "" +| "Command to execute for ExecDataConnector list" -| "dbms.cluster.discovery.log_level" -| "WARN" -| "The level of middleware logging." +| "server.backup.exec_connector.scheme" +| "" +| "Schemes ExecDataConnector will match on" 3+d|Rows: 3 |===