Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Index

deprecated

The SDK definition of a Firestore index.

@deprecated

Instead of creating cache indexes manually, consider using enablePersistentCacheIndexAutoCreation() to let the SDK decide whether to create cache indexes for queries running locally.

interface Index {
[key: string]: unknown;
readonly collectionGroup: string;
readonly fields?: IndexField[];
}

§Index Signatures

§
[key: string]: unknown

§Properties

§
readonly collectionGroup: string
[src]

The ID of the collection to index.

§
readonly fields?: IndexField[]
[src]

A list of fields to index.