Skip to content
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[[case]]
= Conditional expressions (CASE)
:description: This page describes how to use the CASE expression with Cypher.
:page-aliases: queries/case.adoc

Generic conditional expressions can be expressed in Cypher using the `CASE` construct.
Two variants of `CASE` exist within Cypher: the _simple_ form, to compare a single expression against multiple values, and the _generic_ form, to express multiple conditional statements.
Expand Down
2 changes: 1 addition & 1 deletion modules/ROOT/pages/expressions/index.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Expressions
:description: Information about the expressions available in Cypher.
:page-aliases: syntax/operators.adoc
:page-aliases: syntax/operators.adoc, queries/expressions.adoc

A Cypher expression is any part of a query that evaluates to a value.
For details and examples of specific expressions, see the following sections:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
= Type predicate expressions
:description: This page describes how to use type predicate expressions with Cypher.
:page-aliases: values-and-types/type-predicate.adoc

A type predicate expression can be used to verify the type of a variable, literal, property or other Cypher expression.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
:description: The `UNION` clause is used to combine the result of multiple queries.
:page-aliases: queries/combined-queries.adoc

[[query-union]]
= Combined queries (`UNION`)
Expand Down