Skip to content

Commit

Permalink
Merge pull request #609 from NUM-Forschungsdatenplattform/release/1.20.0
Browse files Browse the repository at this point in the history
Merge release branch '1.20.0'
  • Loading branch information
ramueSVA authored Jul 29, 2024
2 parents 8bd5669 + 8491f1e commit a87fb95
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "num-portal-webapp",
"version": "1.19.0",
"version": "1.20.0",
"scripts": {
"postinstall": "ngcc",
"ng": "ng",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('PatientFilterService', () => {
const baseAqlUrl = 'localhost/api/aql'
const baseProjectUrl = 'localhost/api/project'
const patientQueryBody = {
query: 'SELECT e/ehr_id/value as ehrId FROM EHR e WHERE EXISTS e/ehr_id/value',
query: 'SELECT e/ehr_id/value as ehrId FROM EHR e',
}

const httpClient = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ export class PatientFilterService {
getAllDatasetCount(): Observable<number> {
return this.httpClient
.post<number>(`${this.baseUrl}/aql/size`, {
query: 'SELECT e/ehr_id/value as ehrId FROM EHR e WHERE EXISTS e/ehr_id/value',
// TODO: revert to use EXISTS when https://github.com/ehrbase/ehrbase/issues/1346 is resolved
// SELECT e/ehr_id/value as ehrId FROM EHR e WHERE EXISTS e/ehr_id/value
query: 'SELECT e/ehr_id/value as ehrId FROM EHR e',
})
.pipe(
tap((size) => {
Expand Down

0 comments on commit a87fb95

Please sign in to comment.