Vadim Laletin
Vadim Laletin
When we use `revinclude` or `include` we have a bundle with multiple types of resources, but fetch/fetch_all returns only main resource. We can add fetch_raw/fetch_all_raw that should always return a...
Now, FHIRReference returns None for `.id`/`.resourceType` attributes. But we can extract them from URL: `http://another.fhir.server/fhir/Patient/id`
I've prepared PR for supporting both of versions https://github.com/worldveil/deuces/pull/21
Based on previous PR
Use:
There are some issues related to this problem: #76 #78
Now, to avoid partial object creation you should wrap your root serializer's `save()` into `transaction.atomic`. I'm not sure about wrapping `save()` in the library in each serializer with mixin. What...
The problem described in #22. It is easy to make mistake in the `source` attribute, and you will always get a message: `AssertionError: The .create() method does not support writable...
Fhirpath 2.0.0 has been released at the beginning of 2020. Fhirpath js already updated grammar: see diff https://github.com/HL7/fhirpath.js/commit/b68886743e3ceffca34e9e0a1ff49dc141f892ac Please consider updating inlined implementation of fhirpath in Aidbox
``` original = {"nested": {"items": {}}} original.items() # => dict_items([('nested', {'items': {}})]) client.resource("CustomResource", **original).serialize().items() # => TypeError: 'AttrDict' object is not callable client.resource("CustomResource", **original)['nested'].items() # => TypeError: 'AttrDict' object is...