You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Unable to render Jira issues macro, execution error.

Syntax Proposal

Simplest Interval Query

q={!interval}foo bar 
  1. This detects field via Solr df logic (check local param first, then query parameter).
  2. The given string is analyzed with query analyzer from the given field
  3. Produced token stream is turned into phrase.

The same is achieved via JSON request API via Query DSL.

{ "query":{"interval":"foo bar"}}

still the same functionality in a little bit complicated form

{ "query":{"interval":{"json_param":"int_q"}},
"params":{"int_q":"foo bar"}
}

s

  • No labels