Skip to content

clean up #780

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/ROOT/pages/query/command-reference.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ m| :params
a| Show all parameters.
See xref:query/operations.adoc#query-parameters[Query parameters] for more information.

m| +:params {}+
m| +:params clear+
a| Remove all parameters.

m| +:params {<key-value pairs>}+
Expand All @@ -53,7 +53,7 @@ The key-value pairs can be specified as `+{x: 1, y: 2}+`.
// ====

m| :server connect
a| Connect to a Neo4j instance.
a| Connect to an instance.
If already connected, this returns the instance you are connected to.

m| :server disconnect
Expand Down
10 changes: 5 additions & 5 deletions modules/ROOT/pages/query/operations.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[[result-frames]]
== Result frames

There are a variety of ways to view data in Neo4j Browser.
There are a variety of ways to view data in Query.
All queries that you run in the Cypher editor populate a reusable result frame.
Query results are rendered as:

Expand Down Expand Up @@ -45,8 +45,8 @@ On Mac, use `⌘ + scroll` and on Windows and Linux, use `Ctrl + scroll` to trig
You can also use the _Fit to screen_ button to fit all query results into the view.
* Expand the Cypher editor area with the image:expand.svg[width=3%] icon next to the play button in the editor.
* Select a node or a relationship to view its properties.
The nodes already have sensible captions assigned by the Browser, which auto-selects a property from the property list to use as a caption.
To change how your graph looks, see xref:query/operations.adoc#styling[].
The nodes already have sensible captions assigned by the Query tool, which auto-selects a property from the property list to use as a caption.
To change the look of your graph, see xref:query/operations.adoc#styling[].
* Right-click a node to *expand* (see its neighbors), *dismiss* it from the visualization, or *unpin* it.
If you double-click a node, you automatically expand it, and if you double-click it again, you undo the expansion.
If you right-click a relationship, you can dismiss it.
Expand Down Expand Up @@ -150,7 +150,7 @@ For more details on the Cypher parameters, see link:https://neo4j.com/docs/cyphe
[[set-params]]
=== Set query parameters

You can set a parameter to be sent with your queries via the *Parameters sidebar* (*{}*) or by using the `:param` command.
You can set a parameter to be sent with your queries via the *Parameters drawer* (*{}*) or by using the `:param` command.


==== Parameter drawer
Expand All @@ -161,7 +161,7 @@ The Parameter drawer provides inputs directly from the UI for most of the proper
[.shadow]
image::param-drawer.png[]

For other property types, such as link:https://neo4j.com/docs/cypher-manual/current/values-and-types/spatial/#spatial-values-point-type[Point] and setting link:https://neo4j.com/docs/cypher-manual/current/values-and-types/property-structural-constructed/#constructed-types[constructed types], the parameter sidebar has a special `evaluated` option.
For other property types, such as link:https://neo4j.com/docs/cypher-manual/current/values-and-types/spatial/#spatial-values-point-type[Point] and setting link:https://neo4j.com/docs/cypher-manual/current/values-and-types/property-structural-constructed/#constructed-types[constructed types], the parameter drawer has a special `evaluated` option.
This option allows you to express a parameter type and have it evaluated by the server as Cypher.
Give the parameter a name, select `evaluated` as the type, enter the value, and use the play button to evaluate the parameter.
This process is much like using the `:param` command, as described in the following section.
Expand Down