Index

public struct Index : Codable, Equatable

Index instances is an entity that gathers a set of documents with its own settings. It can be comparable to a table in SQL, or a collection in MongoDB.

Properties

  • uid

    The index uid.

    Declaration

    Swift

    public let uid: String
  • The data when the index was created.

    Declaration

    Swift

    public let createdAt: Date?
  • The data when the index was last updated.

    Declaration

    Swift

    public let updatedAt: Date?
  • The primary key configured for the index.

    Declaration

    Swift

    public let primaryKey: String?