Closed sin-bin closed 4 years ago
CATS will replace url path parameters. However, query parameters are not set or replaced. For example: http://localhost/api/{id}?sortBy={sortProperty}
http://localhost/api/{id}?sortBy={sortProperty}
Query parameter "sortBy" is not set in the Full Request Path.
sortBy
OpenAPI swagger fully supports query parameters:
parameters: - in: query name: sortBy schema: type: string
Thanks for reporting this. This is indeed a missing feature. I'll focus on implementing it in the next days.
This is now fixed under: https://github.com/Endava/cats/commit/80074c4c977077643c9487c51f997e0a23ac5e29
CATS will replace url path parameters. However, query parameters are not set or replaced. For example:
http://localhost/api/{id}?sortBy={sortProperty}
Query parameter "
sortBy
" is not set in the Full Request Path.OpenAPI swagger fully supports query parameters: