Merge pull request #1 from Selly-Modules/default-sort-latest
add default sort latest
This commit is contained in:
commit
269e92345d
|
@ -13,6 +13,7 @@ type AllQuery struct {
|
|||
TargetID string
|
||||
Page int64
|
||||
Limit int64
|
||||
Sort interface{}
|
||||
}
|
||||
|
||||
// All ...
|
||||
|
@ -23,15 +24,16 @@ func (s Service) All(query AllQuery) []Audit {
|
|||
skip = query.Page * query.Limit
|
||||
result = make([]Audit, 0)
|
||||
)
|
||||
opts := options.Find().SetLimit(query.Limit).SetSkip(skip).SetSort(bson.M{"_id": -1})
|
||||
if query.Sort != nil {
|
||||
opts.SetSort(query.Sort)
|
||||
}
|
||||
|
||||
// Find db
|
||||
cursor, err := s.DB.Collection(colName).Find(ctx, bson.D{
|
||||
{"target", query.Target},
|
||||
{"targetId", query.TargetID},
|
||||
}, &options.FindOptions{
|
||||
Limit: &query.Limit,
|
||||
Skip: &skip,
|
||||
})
|
||||
}, opts)
|
||||
if err != nil {
|
||||
return result
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue