We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
By default all resources support common parameters prefixed with an underscore https://www.hl7.org/fhir/search.html#all
But recently we discovered that same parameters works without underscore, but shouldn't.
GET /Patient?lastUpdated=gt2020-01-01 results to
GET /Patient?lastUpdated=gt2020-01-01
query-sql": [ "SELECT \"patient\".* FROM \"patient\" WHERE \"patient\".ts > knife_date_bound(?, ?) LIMIT ? OFFSET ? ", "2020-01-01", "min", 100, 0 ]
Aidbox version: edge
The text was updated successfully, but these errors were encountered:
Hi @k3nj1g FHIR doesn't prohibit custom search params so we don't consider it to be a bug. Could you please give us more context on your issue?
The standard search parameters with the underscore work as expected.
Sorry, something went wrong.
No branches or pull requests
By default all resources support common parameters prefixed with an underscore https://www.hl7.org/fhir/search.html#all
But recently we discovered that same parameters works without underscore, but shouldn't.
GET /Patient?lastUpdated=gt2020-01-01
results toAidbox version: edge
The text was updated successfully, but these errors were encountered: