entities
Reads a set of Entity.
entities(
first: Int
offset: Int
orderBy: [EntitiesOrderBy!]
condition: EntityCondition
filter: EntityFilter
spaceId: UUID
spaceIds: UUIDFilter
typeId: UUID
typeIds: UUIDFilter
): [Entity!]
Arguments
entities.first ● Int scalar
Only read the first n values of the set.
entities.offset ● Int scalar
Skip the first n values.
entities.orderBy ● [EntitiesOrderBy!] list enum
The method to use when ordering Entity.
entities.condition ● EntityCondition input
A condition to be used in determining which values should be returned by the collection.
entities.filter ● EntityFilter input
A filter to be used in determining which values should be returned by the collection.
entities.spaceId ● UUID scalar
Filter entities that have data in this space (efficient indexed lookup)
entities.spaceIds ● UUIDFilter input
Filter entities by space with operators (in, notIn, is, isNot, etc.)
entities.typeId ● UUID scalar
Filter entities that have this type (efficient indexed lookup)
entities.typeIds ● UUIDFilter input
Filter entities by type with operators (in, notIn, is, isNot, etc.)
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:
- List Entities of a Type in a Space
- Filter Entities by Relation
- Bulk Lookup by Name List —
name: in: [...]— many names → many IDs in one round-trip - Search Scoped to a Single Space
:::