You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Nest/DSL/Query/BoolQueryDescriptor.cs
+7-8
Original file line number
Diff line number
Diff line change
@@ -100,9 +100,8 @@ public BoolQueryDescriptor<T> DisableCoord()
100
100
}
101
101
102
102
/// <summary>
103
-
///
103
+
/// Specifies the name of the query.
104
104
/// </summary>
105
-
/// <param name="minimumShouldMatches"></param>
106
105
/// <returns></returns>
107
106
publicBoolQueryDescriptor<T>Name(stringname)
108
107
{
@@ -177,8 +176,7 @@ public BoolQueryDescriptor<T> Must(params QueryContainer[] queries)
177
176
}
178
177
179
178
/// <summary>
180
-
/// The clause (query) should appear in the matching document. A boolean query with no must clauses, one or more should clauses must match a document.
181
-
/// The minimum number of should clauses to match can be set using minimum_should_match parameter.
179
+
/// The clause (query) must not appear in the matching documents. Note that it is not possible to search on documents that only consists of a must_not clauses.
182
180
/// </summary>
183
181
/// <param name="queries"></param>
184
182
/// <returns></returns>
@@ -198,8 +196,7 @@ public BoolQueryDescriptor<T> MustNot(params Func<QueryDescriptor<T>, QueryConta
198
196
}
199
197
200
198
/// <summary>
201
-
/// The clause (query) should appear in the matching document. A boolean query with no must clauses, one or more should clauses must match a document.
202
-
/// The minimum number of should clauses to match can be set using minimum_should_match parameter.
199
+
/// The clause (query) must not appear in the matching documents. Note that it is not possible to search on documents that only consists of a must_not clauses.
203
200
/// </summary>
204
201
/// <param name="queries"></param>
205
202
/// <returns></returns>
@@ -217,7 +214,8 @@ public BoolQueryDescriptor<T> MustNot(params QueryContainer[] queries)
217
214
}
218
215
219
216
/// <summary>
220
-
/// The clause (query) must not appear in the matching documents. Note that it is not possible to search on documents that only consists of a must_not clauses.
217
+
/// The clause (query) should appear in the matching document. A boolean query with no must clauses, one or more should clauses must match a document.
218
+
/// The minimum number of should clauses to match can be set using minimum_should_match parameter.
221
219
/// </summary>
222
220
/// <param name="queries"></param>
223
221
/// <returns></returns>
@@ -237,7 +235,8 @@ public BoolQueryDescriptor<T> Should(params Func<QueryDescriptor<T>, QueryContai
237
235
}
238
236
239
237
/// <summary>
240
-
/// The clause (query) must not appear in the matching documents. Note that it is not possible to search on documents that only consists of a must_not clauses.
238
+
/// The clause (query) should appear in the matching document. A boolean query with no must clauses, one or more should clauses must match a document.
239
+
/// The minimum number of should clauses to match can be set using minimum_should_match parameter.
0 commit comments