functional-models
    Preparing search index...

    Interface DatastoreSearchResult<T>

    A search result from a datastore

    interface DatastoreSearchResult<T extends DataDescription> {
        instances: readonly ToObjectResult<T>[];
        page?: any;
    }

    Type Parameters

    Index

    Properties

    Properties

    instances: readonly ToObjectResult<T>[]

    An array of objects that represent the data from the datastore.

    page?: any

    Any pagination information.