Bartek Szymański

Results 2 issues of Bartek Szymański

Hi! Missing `request` in transaction entry is intended. Tested on v1.3.0.22 ``` fhirbase=# SELECT fhir_transaction('{"resourceType":"Bundle","type":"transaction","entry":[{"resource":{"resourceType":"Patient","active":true,"name":[{"family":["NameUpdated"]}]}}]}'); ERROR: TypeError: Cannot read property 'url' of undefined DETAIL: plv8_init() LINE 6700: url = entry.request.url;...

Hi! Issue connected with #119, but my case is related to errors during transaction: Trying to create resource of non-existing type: ``` fhirbase=# SELECT fhir_transaction('{"resourceType":"Bundle","type":"transaction","entry":[{"resource":{"resourceType":"UnknownResource","active":true,"name":[{"use":"official","family":["Snow"],"given":["John"]}],"gender":"male","birthDate":"2001-01-01"},"request":{"method":"POST","url":"UnknownResource"}}]}'); ``` a response ``` fhir_transaction...