Crate mongodb_schema_describer
source ·Expand description
The MongoDB Schema describer.
A common place to query all the possible schema data we can from a MongoDB instance.
Structs
- All the information we can fetch per collection.
- An id of a collection in the schema.
- A collection/table in the database.
- All the information we can scrape per index.
- A field that is part of an index.
- An id of an index in the schema.
- An index in the database.
- All the possible information we should scrape out from a MongoDB database.
Enums
- Defines the property in the field that is part of an index.
- The type of an index.
Functions
- Describe the contents of the given database. Only bothers about the schema, meaning the collection names and indexes created. Does a bit of magic to the indexes, so if having a full-text index, the field info is sanitized for Prisma’s use cases. We do not return
_fts
or_ftsx
fields, replacing them with the actual fields used to build the full-text index. - Get the version.