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

     1  package ravendb
     2  
     3  type IMoreLikeThisBuilderForDocumentQuery interface {
     4  	// Note: it's usingDocument() in Java but conflicts with IMoreLikeThisBuilderBase
     5  	UsingDocumentWithBuilder(builder func(*DocumentQuery)) IMoreLikeThisOperations
     6  
     7  	UsingAnyDocument() IMoreLikeThisOperations
     8  	UsingDocument(string) IMoreLikeThisOperations
     9  }