Stream: implementers
Topic: token modifier: maps-to
natus (Oct 26 2019 at 12:31):
hi
the existing token search modifier are: :text :not :above :below :in :not-in :of-type
I d'like a new modifier called :maps-to
in order to search for concepts or their equivalent.
Right now as far as I know, one have to: 1. ask for conceptMap resource to get those equivalent coding 2. feed the token list with them in the search.
I guess that could be done in one step for the client.
Thought ?
Lloyd McKenzie (Oct 26 2019 at 14:27):
How do you index for that?
natus (Oct 26 2019 at 18:41):
@Lloyd McKenzie
you mean index
like RDBMS index ?
Lloyd McKenzie (Oct 26 2019 at 19:25):
If servers are going to support the search parameter, they're going to want to index to ensure that searches can be efficient. This seems like a difficult thing to index on.
Michael Lawley (Oct 27 2019 at 03:25):
If you can index for :in
and an arbitrary ValueSet, then indexing for a ConceptMap
should not be any harder (I mean that as a desirable, not as assessment of the current state).
In order to support this efficiently with an external terminology service we'd want to be able to do "bulk translate" rather than the current single-code translate.
Michael Lawley (Oct 27 2019 at 03:33):
Additionally, :maps-to
would also need to be able to account for the equivalence relationship in the ConceptMap - do you only want equivalent
codes, or are broader than
or narrower than
valid?
Last updated: Apr 12 2022 at 19:14 UTC