Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Profile picture
DevOps
Administrator Moderator
2 Questions, 2 Answers
  Active since 18 November 2020
  Last activity 2 years ago

Reputation

84 8 0

Badges 2

Editor Newbie
2 Votes
1 Answers
198 Views
2 Votes 1 Answers 198 Views
Why is there a limit to the amount of records that can be returned by a DSL native SQL query? Why can't I set that limit to 1 million records all the time?
4 years ago
1 Votes
1 Answers
183 Views
1 Votes 1 Answers 183 Views
I am getting this error when trying to run the Helium DevClient java -jar ~/ws/he-dev-client/HeliumDev-app-1.31.1-jar-with-dependencies.jar Exception in thre...
2 @NotTracked vs Change Log Skip Tables

Helium implements a default change tracking strategy for persistent objects. This change tracking strategy generates change logs that is used by the Helium / Journey middleware to synchronise objects between Helium and Journey applications. The change logs can also be used as a basic audit trail.

The @NotTracked object annotation designates an object should not be considered for Helium's default change tracking. In general, persistent objects that should not be considered for change tracki...

4 years ago
1 Reference/Set a variable from another unit

Unfortunately this is the only way to do so. Helium DSL is based on a Model-View-Presenter (MVP) pattern that couples presenters and views more closely than say the MVC pattern does. This means that referencing variables or functions from one unit should specifically be designated as the variables or functions in that specific unit. Read a bit more about these two patterns here:
https://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference
[https://www...

4 years ago