START

with known data

The START clause binds starting points within the graph, by directly looking up a node ID, or using a special (non-schema) index.

Reference: START manual page
Related: :help MATCH :help RETURN :help Cypher
START n=node(0)
RETURN n
Bind n to node with ID 0, then return that node.