Peter Van den Bosch

Results 188 comments of Peter Van den Bosch

Personally, I prefer start with a capital letter, but a period seems unnecessary for single-line summaries. It might not be worthwhile to enforce such guidelines very strictly. It could represent...

In GitLab by @pvdbosch on Mar 21, 2018, 16:17 assigned to @kernixski

In GitLab by @kernixski on Apr 24, 2018, 13:04 For complex queries, we can use FIQL (Feed Item Query Language) or RSQL (a superset of FIQL). More info on FIQL:...

In GitLab by @pvdbosch on Apr 24, 2018, 14:43 * simple case - limited list of search parameters: => explicit query parameters for each one, defined in Swagger spec. Example:...

In GitLab by @kernixski on May 28, 2018, 15:46 jirutka RSQL parser seems to be used by other projects but the project itself seems to be abandonned (no commit since...

In GitLab by @pvdbosch on May 29, 2018, 15:11 For simple query scenario, two options: * ?birthDate_lt= * ?birthDate_contains= * ?birthDate:lt= ( not HL7) * ?birthDate:contains= ( ~ HL7 standard)

In GitLab by @pvdbosch on May 29, 2018, 15:47 ?birthDate:contains generates birthDatecontains in Java with swagger codegen which is inconvenient. => underscore is easier: ?birthDate_lt

In GitLab by @kernixski on Nov 19, 2018, 10:08 mentioned in commit 5d83610a3d2d93f82b41814c332b7c6bda709b93

In GitLab by @kernixski on Nov 19, 2018, 10:27 mentioned in commit bdf0d26cfa387bf8be421bbae2ea1d59ff654004

In GitLab by @pvdbosch on Nov 26, 2018, 14:31 conclusions of the meeting of 19 November: - underscore confirmed as separator between property and operation - dot was also considered...