I'm learning Cypher query language. I have the following query:
MATCH path = (:Disease {name: 'influenza'})-[:PRESENTS_DpS]->(:Symptom)<-[:PRESENTS_DpS]-(:Disease {name: 'asthma'})
RETURN path
I want a better understanding of what does this query do, e.g. in which order are commands executed, is there an order like in mathematics (priority of operators, etc.).
I use Memgraph Lab for querying.