github.com/ravendb/ravendb-go-client@v0.0.0-20240229102137-4474ee7aa0fa/starts_with_args.go (about)

     1  package ravendb
     2  
     3  // StartsWithArgs contains arguments for functions that return documents
     4  // matching one or more options.
     5  // StartsWith is required, other fields are optional.
     6  type StartsWithArgs struct {
     7  	StartsWith string // TODO: Prefix?
     8  	Matches    string
     9  	Start      int
    10  	PageSize   int
    11  	StartAfter string
    12  
    13  	Exclude string
    14  }