add default sort latest
This commit is contained in:
		
							parent
							
								
									66f49018b5
								
							
						
					
					
						commit
						296142f7c0
					
				|  | @ -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