WildcardQuery

zio.elasticsearch.query.WildcardQuery
sealed trait WildcardQuery[S] extends ElasticQuery[S]

Attributes

Graph
Supertypes
trait ElasticQuery[S]
class Object
trait Matchable
class Any

Members list

Value members

Inherited methods

def boost(value: Double): Q

Sets the boost parameter for this zio.elasticsearch.query.ElasticQuery. The boost value is a positive multiplier applied to the score of documents matching the query. A value greater than 1 increases the relevance score of matching documents, while a value less than 1 decreases it. The default boost value is 1.

Sets the boost parameter for this zio.elasticsearch.query.ElasticQuery. The boost value is a positive multiplier applied to the score of documents matching the query. A value greater than 1 increases the relevance score of matching documents, while a value less than 1 decreases it. The default boost value is 1.

Value parameters

value

a non-negative real number to set boost parameter to

Attributes

Returns

a new instance of the zio.elasticsearch.query.ElasticQuery with the boost value set.

Inherited from:
HasBoost (hidden)
def caseInsensitive(value: Boolean): Q

Sets the caseInsensitive parameter for the zio.elasticsearch.query.ElasticQuery. Case-insensitive queries match text regardless of the case of the characters in the query string. By default, queries are case-sensitive.

Sets the caseInsensitive parameter for the zio.elasticsearch.query.ElasticQuery. Case-insensitive queries match text regardless of the case of the characters in the query string. By default, queries are case-sensitive.

Value parameters

value

the scala.Boolean value for caseInsensitive parameter

Attributes

Returns

a new instance of the zio.elasticsearch.query.ElasticQuery with the caseInsensitive value set.

Inherited from:
HasCaseInsensitive (hidden)
final def caseInsensitiveFalse: Q

Sets the caseInsensitive parameter to false for this zio.elasticsearch.query.ElasticQuery. Same as caseInsensitive(false).

Sets the caseInsensitive parameter to false for this zio.elasticsearch.query.ElasticQuery. Same as caseInsensitive(false).

Attributes

Returns

a new instance of the zio.elasticsearch.query.ElasticQuery with the caseInsensitive value set to false.

See also

#caseInsensitive

Inherited from:
HasCaseInsensitive (hidden)
final def caseInsensitiveTrue: Q

Sets the caseInsensitive parameter to true for this zio.elasticsearch.query.ElasticQuery. Same as caseInsensitive(true).

Sets the caseInsensitive parameter to true for this zio.elasticsearch.query.ElasticQuery. Same as caseInsensitive(true).

Attributes

Returns

a new instance of the zio.elasticsearch.query.ElasticQuery with the caseInsensitive value set to true.

See also

#caseInsensitive

Inherited from:
HasCaseInsensitive (hidden)