JSPM

firestore-cig

2.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q21502F
  • License MIT

A utility to create composite indexes for firestore.

Package Exports

  • firestore-cig

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (firestore-cig) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Firestore Composite Index Generator

A command line utility to generate composite indexes for your firestore app.

About The Project

Firestore requires the use of composite index to apply a combination of sorts and filters. While creating apps, this could mean creating a composite index of every possible combination of sorts and filters available.

For example, if you have a table showing different cars at a warehouse. The schema would be something like:

Cars (collection) {
    Car-ASKDN234MD (document) {
        Name: String,
        Color: String,
        Delivery: Timestamp,
        Location: String
    }
}

If you want to get all cars of red colors being delivered to a specific location, you would need a composite index for the query. Now, if you want to sort it by delivery time (ascending), you need to build another composite query, and yet another query if you want to sort it descending instead.

This utility automatically creates composite queries on the basis of what you want to sort and/or filter by, and adds them to your firestore.indexes.json.

Usage

Installation

npm install -g firestore-cig

Usage

firestore-cig