Table of Contents

Class APIFindResult<T>

Namespace
DataStax.AstraDB.DataApi.Core.Results
Assembly
DataStax.AstraDB.DataApi.dll

A page of results from a find query.

public class APIFindResult<T>

Type Parameters

T
Inheritance
APIFindResult<T>
Inherited Members

Properties

Items

The documents returned by the query.

[JsonInclude]
[JsonPropertyName("documents")]
public List<T> Items { get; set; }

Property Value

List<T>

NextPageState

A token that can be used to retrieve the next page of results.

[JsonInclude]
[JsonPropertyName("nextPageState")]
public string NextPageState { get; set; }

Property Value

string