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

# Interface EntityQuerySubscriptionSeed<T>

```typescript
interface EntityQuerySubscriptionSeed<T = unknown> {
    eventCursor: number;
    kind: "seed";
    recoveryCursor: string;
    snapshot: { cursor: string | null; records: T[] };
}
```

Types: [T](#t), [eventCursor](#eventcursor), [kind](#kind), [recoveryCursor](#recoverycursor), [snapshot](#snapshot)

#### Type Parameters

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

##### Index

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

[eventCursor](#eventcursor) [kind](#kind) [recoveryCursor](#recoverycursor) [snapshot](#snapshot)

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

### <a id="eventcursor"></a>eventCursor

```typescript
eventCursor: number
```

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

```typescript
kind: "seed"
```

### <a id="recoverycursor"></a>recoveryCursor

```typescript
recoveryCursor: string
```

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

```typescript
snapshot: { cursor: string | null; records: T[] }
```

Types: [T](#t)
