There is a way to read query parameters in service mock as for path params?
Thank you for any help!
Yes. Read the docs: https://github.com/intuit/karate/tree/master/karate-netty#paramValue
Scenario: pathMatches('/greeting') && paramValue('name') != null
* def content = 'Hello ' + paramValue('name') + '!'
* def response = { id: '#(nextId())', content: '#(content)' }