Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrudin committed Aug 27, 2024
2 parents 79fb5d9 + 6629c35 commit 2cd3276
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
21 changes: 13 additions & 8 deletions docs/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (7.0.4.3)
activesupport (7.0.7.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
Expand All @@ -13,8 +13,8 @@ GEM
execjs
coffee-script-source (1.11.1)
colorator (1.1.0)
commonmarker (0.23.9)
concurrent-ruby (1.2.2)
commonmarker (0.23.10)
concurrent-ruby (1.3.4)
dnsruby (1.70.0)
simpleidn (~> 0.2.1)
em-websocket (0.5.3)
Expand Down Expand Up @@ -86,7 +86,7 @@ GEM
activesupport (>= 2)
nokogiri (>= 1.4)
http_parser.rb (0.8.0)
i18n (1.13.0)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
jekyll (3.9.3)
addressable (~> 2.4)
Expand Down Expand Up @@ -209,20 +209,23 @@ GEM
jekyll (>= 3.5, < 5.0)
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
minitest (5.18.0)
nokogiri (1.14.3-arm64-darwin)
minitest (5.25.1)
nokogiri (1.16.5-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.5-x86_64-linux)
racc (~> 1.4)
octokit (4.25.1)
faraday (>= 1, < 3)
sawyer (~> 0.9)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (4.0.7)
racc (1.6.2)
racc (1.8.1)
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
ffi (~> 1.0)
rexml (3.2.5)
rexml (3.3.6)
strscan
rouge (3.26.0)
ruby2_keywords (0.0.5)
rubyzip (2.3.2)
Expand All @@ -237,6 +240,7 @@ GEM
faraday (>= 0.17.3, < 3)
simpleidn (0.2.1)
unf (~> 0.1.4)
strscan (3.1.0)
terminal-table (1.8.0)
unicode-display_width (~> 1.1, >= 1.1.1)
typhoeus (1.4.0)
Expand All @@ -252,6 +256,7 @@ GEM
PLATFORMS
arm64-darwin-21
arm64-darwin-23
x86_64-linux

DEPENDENCIES
github-pages (~> 228)
Expand Down
6 changes: 6 additions & 0 deletions docs/managing-documents/searching.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ assert len(docs) == 1
The search string in the example corresponds to the `q` argument, which is the first argument in the method and thus
does not need to be named.

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

## Searching via a complex query

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

0 comments on commit 2cd3276

Please sign in to comment.