We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8c6ac0 commit 701fe9cCopy full SHA for 701fe9c
1 file changed
src/Typesense/SearchParameters.cs
@@ -269,6 +269,14 @@ public record SearchParameters
269
[JsonPropertyName("highlight_full_fields")]
270
public string? HighlightFullFields { get; set; }
271
272
+ /// <summary>
273
+ /// Comma separated list of fields that should be highlighted with snippetting.
274
+ /// Default: all queried fields will be highlighted.
275
+ /// Set to none to disable snippetting fully.
276
+ /// </summary>
277
+ [JsonPropertyName("highlight_fields")]
278
+ public string? HighlightFields { get; set; }
279
+
280
/// <summary>
281
/// The number of tokens that should surround the highlighted text on each side.
282
/// </summary>
0 commit comments