Documentation
¶
Overview ¶
Package model provides model registration and metadata management for DynamORM
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FieldMetadata ¶
type FieldMetadata struct {
Type reflect.Type
IndexInfo map[string]IndexRole
Tags map[string]string
DBName string
Name string
IndexPath []int
Index int
IsPK bool
IsEncrypted bool
IsVersion bool
IsTTL bool
IsCreatedAt bool
IsUpdatedAt bool
IsSet bool
OmitEmpty bool
IsSK bool
}
FieldMetadata holds metadata for a single field
type IndexSchema ¶
type IndexSchema struct {
Name string
Type IndexType
PartitionKey *FieldMetadata
SortKey *FieldMetadata
ProjectionType string
ProjectedFields []string
Sparse bool
}
IndexSchema represents a GSI or LSI schema
type KeySchema ¶
type KeySchema struct {
PartitionKey *FieldMetadata
SortKey *FieldMetadata
}
KeySchema represents a primary key or index key schema
type Metadata ¶
type Metadata struct {
Type reflect.Type
PrimaryKey *KeySchema
Fields map[string]*FieldMetadata
FieldsByDBName map[string]*FieldMetadata
VersionField *FieldMetadata
TTLField *FieldMetadata
CreatedAtField *FieldMetadata
UpdatedAtField *FieldMetadata
TableName string
Indexes []IndexSchema
NamingConvention naming.Convention
}
Metadata holds all metadata for a model
type Registry ¶
type Registry struct {
// contains filtered or unexported fields
}
Registry manages registered models and their metadata
func (*Registry) GetMetadata ¶
GetMetadata retrieves metadata for a model
func (*Registry) GetMetadataByTable ¶
GetMetadataByTable retrieves metadata by table name
Click to show internal directories.
Click to hide internal directories.