mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-16 04:48:04 +00:00
13 lines
360 B
Go
13 lines
360 B
Go
package eventsourcing
|
|
|
|
import (
|
|
es_models "github.com/caos/zitadel/internal/eventstore/models"
|
|
"github.com/caos/zitadel/internal/key/repository/eventsourcing/model"
|
|
)
|
|
|
|
func KeyPairQuery(latestSequence uint64) *es_models.SearchQuery {
|
|
return es_models.NewSearchQuery().
|
|
AggregateTypeFilter(model.KeyPairAggregate).
|
|
LatestSequenceFilter(latestSequence)
|
|
}
|