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

     1  package ravendb
     2  
     3  // QueryData represents
     4  type QueryData struct {
     5  	// Fields lists fields to be selected from queried document
     6  	Fields []string
     7  	// Projections lists fields in the result entity
     8  	Projections []string
     9  
    10  	// TODO: should those be exposed as well?
    11  	fromAlias        string
    12  	declareToken     *declareToken
    13  	loadTokens       []*loadToken
    14  	isCustomFunction bool
    15  }