Files
goext/pagination/filter.go
T
viktor 0c37dd5576
Build Docker and Deploy / Run goext test-suite (push) Failing after 1m27s
updated mongo driver dependencies to v2
2026-04-21 12:11:38 +02:00

30 lines
607 B
Go

package pagination
import (
"context"
"go.mongodb.org/mongo-driver/v2/bson"
"go.mongodb.org/mongo-driver/v2/mongo"
)
type MongoFilter interface {
FilterQuery(ctx context.Context) mongo.Pipeline
Sort(ctx context.Context) bson.D
}
type dynamicFilter struct {
pipeline mongo.Pipeline
sort bson.D
}
func (d dynamicFilter) FilterQuery(ctx context.Context) mongo.Pipeline {
return d.pipeline
}
func (d dynamicFilter) Sort(ctx context.Context) bson.D {
return d.sort
}
func CreateFilter(pipeline mongo.Pipeline, sort bson.D) MongoFilter {
return dynamicFilter{pipeline: pipeline, sort: sort}
}