gitlab-org--gitlab-foss/doc/user/search/advanced_search_syntax.md
Marcel Amirault 73c6477b7e Changing badges to use parentheses not brackets
Previously, we used brackets to denote the tier badges,
but this made Kramdown, the docs site Markdown renderer,
show many warnings when building the site. This is now
fixed by using parentheses instead of square brackets.

This was caused by [PREMIUM] looking like a link to
Kramdown, which couldn't find a URL there.

See:
- https://gitlab.com/gitlab-com/gitlab-docs/merge_requests/484
- https://gitlab.com/gitlab-org/gitlab-ce/issues/63800
2019-07-08 08:50:38 +00:00

3.2 KiB

Advanced Syntax Search (STARTER ONLY)

Notes:

NOTE: Note Advanced Global Search (powered by Elasticsearch) is not yet available on GitLab.com. We are working on adding it. Follow this epic for the latest updates.

Use advanced queries for more targeted search results.

Overview

The Advanced Syntax Search is a subset of the Advanced Global Search, which you can use if you want to have more specific search results.

Use cases

Let's say for example that the product you develop relies on the code of another product that's hosted under some other group.

Since under your GitLab instance there are hosted hundreds of different projects, you need the search results to be as efficient as possible. You have a feeling of what you want to find (e.g., a function name), but at the same you're also not so sure.

In that case, using the advanced search syntax in your query will yield much better results.

The Advanced Syntax Search supports fuzzy or exact search queries with prefixes, boolean operators, and much more.

Full details can be found in the Elasticsearch documentation, but here's a quick guide:

  • Searches look for all the words in a query, in any order - e.g.: searching issues for display bug will return all issues matching both those words, in any order.
  • To find the exact phrase (stemming still applies), use double quotes: "display bug"
  • To find bugs not mentioning display, use -: bug -display
  • To find a bug in display or sound, use |: bug display | sound
  • To group terms together, use parentheses: bug | (display +sound)
  • To match a partial word, use *: bug find_by_*
  • To find a term containing one of these symbols, use \: argument \-last

Syntax search filters

The Advanced Syntax Search also supports the use of filters. The available filters are:

  • filename: Filters by filename. You can use the glob (*) operator for fuzzy matching.
  • path: Filters by path. You can use the glob (*) operator for fuzzy matching.
  • extension: Filters by extension in the filename. Please write the extension without a leading dot. Exact match only.

To use them, simply add them to your query in the format <filter_name>:<value> without any spaces between the colon (:) and the value.

Examples:

  • Finding a file with any content named hello_world.rb: * filename:hello_world.rb
  • Finding a file named hello_world with the text whatever inside of it: whatever filename:hello_world
  • Finding the text 'def create' inside files with the .rb extension: def create extension:rb
  • Finding the text sha inside files in a folder called encryption: sha path:encryption
  • Finding any file starting with hello containing world and with the .js extension: world filename:hello* extension:js