You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mongox-go-driver/mongox/database/count.go

24 lines
633 B

package database
5 years ago
import (
4 years ago
"go.mongodb.org/mongo-driver/mongo/options"
4 years ago
"github.com/mainnika/mongox-go-driver/v2/mongox/query"
5 years ago
)
// Count function counts documents in the database by query
// target is used only to get collection by tag so it'd be better to use nil ptr here
func (d *Database) Count(target interface{}, filters ...interface{}) (result int64, err error) {
5 years ago
collection := d.GetCollectionOf(target)
5 years ago
opts := options.Count()
composed := query.Compose(filters...)
opts.Limit = composed.Limiter()
opts.Skip = composed.Skipper()
result, err = collection.CountDocuments(d.Context(), composed.M(), opts)
5 years ago
return
5 years ago
}