Skip to content

Commit 2cd3276

Browse files
committed
Merge branch 'master' into develop
2 parents 79fb5d9 + 6629c35 commit 2cd3276

File tree

2 files changed

+19
-8
lines changed

2 files changed

+19
-8
lines changed

docs/Gemfile.lock

+13-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activesupport (7.0.4.3)
4+
activesupport (7.0.7.1)
55
concurrent-ruby (~> 1.0, >= 1.0.2)
66
i18n (>= 1.6, < 2)
77
minitest (>= 5.1)
@@ -13,8 +13,8 @@ GEM
1313
execjs
1414
coffee-script-source (1.11.1)
1515
colorator (1.1.0)
16-
commonmarker (0.23.9)
17-
concurrent-ruby (1.2.2)
16+
commonmarker (0.23.10)
17+
concurrent-ruby (1.3.4)
1818
dnsruby (1.70.0)
1919
simpleidn (~> 0.2.1)
2020
em-websocket (0.5.3)
@@ -86,7 +86,7 @@ GEM
8686
activesupport (>= 2)
8787
nokogiri (>= 1.4)
8888
http_parser.rb (0.8.0)
89-
i18n (1.13.0)
89+
i18n (1.14.5)
9090
concurrent-ruby (~> 1.0)
9191
jekyll (3.9.3)
9292
addressable (~> 2.4)
@@ -209,20 +209,23 @@ GEM
209209
jekyll (>= 3.5, < 5.0)
210210
jekyll-feed (~> 0.9)
211211
jekyll-seo-tag (~> 2.1)
212-
minitest (5.18.0)
213-
nokogiri (1.14.3-arm64-darwin)
212+
minitest (5.25.1)
213+
nokogiri (1.16.5-arm64-darwin)
214+
racc (~> 1.4)
215+
nokogiri (1.16.5-x86_64-linux)
214216
racc (~> 1.4)
215217
octokit (4.25.1)
216218
faraday (>= 1, < 3)
217219
sawyer (~> 0.9)
218220
pathutil (0.16.2)
219221
forwardable-extended (~> 2.6)
220222
public_suffix (4.0.7)
221-
racc (1.6.2)
223+
racc (1.8.1)
222224
rb-fsevent (0.11.2)
223225
rb-inotify (0.10.1)
224226
ffi (~> 1.0)
225-
rexml (3.2.5)
227+
rexml (3.3.6)
228+
strscan
226229
rouge (3.26.0)
227230
ruby2_keywords (0.0.5)
228231
rubyzip (2.3.2)
@@ -237,6 +240,7 @@ GEM
237240
faraday (>= 0.17.3, < 3)
238241
simpleidn (0.2.1)
239242
unf (~> 0.1.4)
243+
strscan (3.1.0)
240244
terminal-table (1.8.0)
241245
unicode-display_width (~> 1.1, >= 1.1.1)
242246
typhoeus (1.4.0)
@@ -252,6 +256,7 @@ GEM
252256
PLATFORMS
253257
arm64-darwin-21
254258
arm64-darwin-23
259+
x86_64-linux
255260

256261
DEPENDENCIES
257262
github-pages (~> 228)

docs/managing-documents/searching.md

+6
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ assert len(docs) == 1
5555
The search string in the example corresponds to the `q` argument, which is the first argument in the method and thus
5656
does not need to be named.
5757

58+
With a search string, you may wish to reference a set of
59+
[MarkLogic search options](https://docs.marklogic.com/guide/search-dev/query-options) as well. You can configure a set
60+
of options via the [MarkLogic REST API](https://docs.marklogic.com/guide/rest-dev/search#id_48838) and then refer to
61+
them by name via the `options` argument. For example, if your options are named `myOptions`, you would
62+
include `options=myOptions` as an argument to `client.documents.search`.
63+
5864
## Searching via a complex query
5965

6066
More complex queries can be submitted via the `query` parameter. The value of this parameter must be one of the

0 commit comments

Comments
 (0)