Andrzej Pietrzak

Results 15 issues of Andrzej Pietrzak

There seems to be a difference between how the 'regular' search syntax and the 'chained' syntax handles references that can contain different resource types. e.g.: Given Patient.generalpractitioner field that can...

We're seeing _revinclude behave differently then _include, when references contain id's with uppercase characters the revinclude search doesn't find them. For the following searches, the one the differences between results...

When running code and reference searches the search prefixes are actually applied and that will cause search errors depending on data. Fhir user would expect these to be applied only...

SELECT fhir_index_parameter('{"resourceType": "Observation", "name": "component-value-quantity"}'); ERROR: Error: syntax error at or near "-" DETAIL: plv8_init() LINE 195: return plv8.execute.call(plv8, q[0], q.slice(1));

On beta5: Using Patient.deceased search param, which should allow to search on patient.deceased[x](patient.deceasedBoolean, patient.deceasedDateTime) This may be the same issue as https://github.com/fhirbase/fhirbase-plv8/issues/67 ``` -- test for multi type search param...

This operation can be used in pretty much two, maybe three use-cases: 1. The client knows the id, maybe even knows the last version but wants to be even more...

Apparently the sorting spec in FHIR changed in the DSTU3 release: http://hl7.org/fhir/2016May/search.html#sort It would be best if this was consistent with the spec syntax, although since it also means adding...

User that wants to take advantage of versioning cannot use a generic mechanism for reading structure definitions alike other resources. SELECT fhir_read_resource('{"resourceType": "STRUCTUREDEFINITION", "id": "Patient"}'); returns only the content of...

SELECT fhir_create_resource('{"allowId": true, "resource": {"id": "id3", "identifier": [{"use": "official", "value": "12-asd", "system": "http://www.bugrers-hosp.com/patients"}, {"use": "temp", "value": "s2-567", "system": "second-system"}, {"use": "temp", "value": "hjkl"}], "resourceType": "Patient"}}'); SELECT fhir_search('{"resourceType": "Patient", "queryString": "identifier=|hjkl"}');...

``` SELECT fhir_create_resource('{"allowId": true, "resource": {"resourceType":"Organization","id":"f001","identifier":[{"use":"official","system":"systm1","value":"91654"},{"use":"usual","system":"systm1","value":"17-0112278"}],"type":{"coding":[{"system":"systm1","code":"V6","display":"University Medical Hospital"},{"system":"http://hl7.org/fhir/organization-type","code":"prov","display":"Healthcare Provider"}]},"name":"Burgers University Medical Center","telecom":[{"system":"phone","value":"022-655 2300","use":"work"}],"address":[{"use":"work","line":["Galapagosweg 91"],"city":"Den Burg","postalCode":"9105 PZ","country":"NLD"},{"use":"work","line":["PO Box 2311"],"city":"Den Burg","postalCode":"9100 AA","country":"NLD"}],"contact":[{"purpose":{"coding":[{"system":"http://hl7.org/fhir/contactentity-type","code":"PRESS"}]},"telecom":[{"system":"phone","value":"022-655 2334"}]},{"purpose":{"coding":[{"system":"http://hl7.org/fhir/contactentity-type","code":"PATINF"}]},"telecom":[{"system":"phone","value":"022-655 2335"}]}]}}'); SELECT fhir_create_resource('{"allowId": true, "resource": {"resourceType":"Practitioner","id":"f001","identifier":[{"use":"official","system":"urn:oid:2.16.528.1.1007.3.1","value":"938273695"},{"use":"usual","system":"urn:oid:2.16.840.1.113883.2.4.6.3","value":"129IDH4OP733"}],"name":{"use":"official","family":["van den broek"],"given":["Eric"],"suffix":["MD"]},"telecom":[{"system":"phone","value":"0205568263","use":"work"},{"system":"email","value":"[email protected]","use":"work"},{"system":"fax","value":"0205664440","use":"work"}],"address":[{"use":"work","line":["Galapagosweg 91"],"city":"Den...