3.2 · Lesson

Querying using Cypher

The graph generated by an Go to glossary for large language model (opens in a new tab)A model trained on text to predict the next token, and so to generate language. may not conform to a strict schema (depending on how you configured the LLM). The lack of a strict schema changes how you query the graph. You may not be looking to find a specific Full definition for node (opens in a new tab)A vertex in a graph. In a property graph it can carry labels and properties. or Full definition for relationship (opens in a new tab)A named, directed connection between two nodes. Every relationship has a type, a start node and an end node., but rather a Full definition for pattern (opens in a new tab)A graph structure written in Cypher, such as a node joined to another node by a relationship. or structure in the graph.

In this lesson, you will explore examples of how to query a Full definition for knowledge graph (opens in a new tab)A representation of real-world entities and their relationships, stored according to organizing principles, typically in a graph database. using Full definition for Cypher (opens in a new tab)Neo4j's implementation of GQL, the ISO standard query language for graph databases. It is declarative: you describe the pattern to find, and the database decides how to find it..