Update docs
This commit is contained in:
parent
598bf56e87
commit
828ddd5185
hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param
hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/server_jpa
|
@ -272,7 +272,6 @@ public class DateRangeParam implements IQueryParameterAnd<DateParam> {
|
||||||
if (myLowerBound == null || myLowerBound.getValue() == null) {
|
if (myLowerBound == null || myLowerBound.getValue() == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
//TODO LOOK AT THE DATE VERSION, WHERE PRECISION OCCASIONALLY CHANGES THE STUPID THING. ESSENTIALLY ADD A SWITCH
|
|
||||||
int retVal = DateUtils.convertDatetoDayInteger(myLowerBound.getValue());
|
int retVal = DateUtils.convertDatetoDayInteger(myLowerBound.getValue());
|
||||||
|
|
||||||
if (myLowerBound.getPrefix() != null) {
|
if (myLowerBound.getPrefix() != null) {
|
||||||
|
|
|
@ -2,10 +2,6 @@
|
||||||
|
|
||||||
The HAPI FHIR JPA Server fully implements most [FHIR search](https://www.hl7.org/fhir/search.html) operations for most versions of FHIR. However, there are some known limitations of the current implementation. Here is a partial list of search functionality that is not currently supported in HAPI FHIR:
|
The HAPI FHIR JPA Server fully implements most [FHIR search](https://www.hl7.org/fhir/search.html) operations for most versions of FHIR. However, there are some known limitations of the current implementation. Here is a partial list of search functionality that is not currently supported in HAPI FHIR:
|
||||||
|
|
||||||
### Date searches without timestamp
|
|
||||||
|
|
||||||
Searching by date with no timestamp currently doesn't match all records it should. See [Issue 1499](https://github.com/jamesagnew/hapi-fhir/issues/1499).
|
|
||||||
|
|
||||||
### Chains within _has
|
### Chains within _has
|
||||||
|
|
||||||
Chains within _has are not currently supported for performance reasons. For example, this search is not currently supported
|
Chains within _has are not currently supported for performance reasons. For example, this search is not currently supported
|
||||||
|
|
Loading…
Reference in New Issue