entity
Read a single entity by its UUID. Returns null if no entity with that ID exists. The most common entry-point query — see the Cookbook recipe **Inspect an Entity** for the full read pattern.
entity(
id: UUID!
): Entity
Arguments
entity.id ● UUID! non-null scalar
Type
Entity object
A node in the Geo knowledge graph. Has typed values (text/integer/date/etc. attached via properties) and typed relations (directed edges to other entities). Entities are not class instances — types are tags applied via the Types relation, and an entity can carry multiple types simultaneously.
:::tip See also
Cookbook recipes that use this:
- Inspect an Entity — full single-entity read with values + relations
:::