Skip to content

Commit

Permalink
Merge pull request #3 from PDOK/changes-in-csw-query-for-novex
Browse files Browse the repository at this point in the history
replace keyword by Subject in CSW query
  • Loading branch information
lvdbrink authored May 29, 2024
2 parents 1f59b0a + afc9994 commit 70a2c0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/csw-table/csw-table.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { HttpErrorResponse } from '@angular/common/http';
export function nameOf<T>(name: Extract<keyof T, string>): string {
return name;
}
const DEFAULT_CQL_QUERY = "type='dataset' AND keyword='basisset novex'";
const DEFAULT_CQL_QUERY = "type='dataset' AND (Subject='basisset novex' OR Subject='Basisset novex' OR Subject='basisset NOVEX' OR Subject='Basisset NOVEX')";

@Component({
selector: 'app-csw-table',
Expand Down

0 comments on commit 70a2c0b

Please sign in to comment.