You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
toFhirInterval does not support Integer Intervals:
Cql: define "AnyInterval": Interval[2, 7]
switch (getSimpleName(value.getPointType().getTypeName())) {
case "Date":
case "DateTime":
return toFhirPeriod(value);
case "Quantity":
return toFhirRange(value);
default:
throw new IllegalArgumentException(String.format(
"Unsupported interval point type for FHIR conversion %s",
value.getPointType().getTypeName()));
}
The text was updated successfully, but these errors were encountered:
toFhirInterval does not support Integer Intervals:
Cql:
define "AnyInterval": Interval[2, 7]
The text was updated successfully, but these errors were encountered: