github.com/altipla-consulting/ravendb-go-client@v0.1.3/where_params.go (about)

     1  package ravendb
     2  
     3  // whereParams are parameters for the Where Equals call
     4  type whereParams struct {
     5  	fieldName      string
     6  	value          interface{}
     7  	allowWildcards bool
     8  	isNestedPath   bool
     9  	isExact        bool
    10  }