_ilike
ilike search by resource content
With _ilike search parameter you search for terms inclusion as substring in text representation of FHIR resource. Interesting feature of this parameter, that it can provide quick feedback to user about matches without forcing to print the whole word (as with full text search). For example jo
will find Johns and Jolie or asp
will match Aspirin.
With _ilike parameter you term separated with space combined with AND
and separated by comma ,
with OR
. Example above is translated into SQL query like this:
ILIKE search can be efficiently indexed with trigram PostgreSQL extension and GIN Index, providing response in tens of miliseconds responses on milions of records.
Last updated