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
Charl Viljoen
Moderator
4 Questions, 2 Answers
  Active since 18 November 2020
  Last activity 4 years ago

Reputation

100 + 10 this April 6 0

Badges 3

Enthusiast Eureka! Newbie
2 Votes
1 Answers
179 Views
2 Votes 1 Answers 179 Views
What is the difference between annotating a model object with @NotTracked and adding the model object to the change log skip table section when setting up/up...
1 Votes
1 Answers
123 Views
1 Votes 1 Answers 123 Views
If I want to remove the relationship between two objects with @ManyToOne, is the only way to do car.doors.remove(i) where i is the position of the item to be...
1 Votes
1 Answers
225 Views
1 Votes 1 Answers 225 Views
I know I can reference or set a variable, or even call a function with DSL in one unit from another unit by first specifying the unit name and then the varia...
0 Votes
0 Answers
153 Views
0 Votes 0 Answers 153 Views
If one is making a M-Pesa payment in DSL, the amount parameter needs to be an integer. Does that mean that M-Pesa payments are always using the currency sub-...
4 years ago
3 Helium DevClient giving "inStream" error

This could be caused by several issues with the DevClient itself, although my testing with that version doesn't give any issue so I doubt it's that. It might be the java version you are using that is causing the problem. Helium needs to be run using Java 1.8 and would usually throw the same error if you are using a different version.

4 years ago
1 How to remove a relationship

I believe you can set the relationship to null from the other side as in

door.car = null;

You can read more about this here: https://wiki.mezzanineware.com/display/HTUT/Lesson+6%3A+Relationships

4 years ago