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

     1  package ravendb
     2  
     3  import "time"
     4  
     5  // QueryOperationOptions represents options for query operation
     6  type QueryOperationOptions struct {
     7  	MaxOpsPerSecond int
     8  	AllowStale      bool
     9  	StaleTimeout    time.Duration
    10  	RetrieveDetails bool
    11  }