> ISPO SDK documentation. [HTML](https://ispo.ai/docs/interfaces/core.EntityQueryResult.html) · [Documentation index](https://ispo.ai/docs/llms.txt)

# Interface EntityQueryResult<T>

```typescript
interface EntityQueryResult<T = unknown> {
    cursor: string | null;
    records: EntityRecord<T>[];
}
```

Types: [T](#t), [cursor](#cursor), [records](#records), [EntityRecord](core.EntityRecord.md)

#### Type Parameters

*   <a id="t"></a>T = unknown

##### Index

### <a id="properties"></a>Properties

[cursor](#cursor) [records](#records)

## <a id="properties-1"></a>Properties

### <a id="cursor"></a>cursor

```typescript
cursor: string | null
```

### <a id="records"></a>records

```typescript
records: EntityRecord<T>[]
```

Types: [EntityRecord](core.EntityRecord.md), [T](#t)
