A web client submits a request to http://localhost:8081?flrstName=john. What is the correct DataWeave expression to access the firstName parameter?
#[attributes.queryParams.firstName]
#[message.queryParams.hrstName]
#[message.inboundProperties.'http.query.params'.firstName]
#[attributes.'http.query.params'.firstName]
Submit