In Ballerina HTTP client, we can send requests using the following syntax:
Album[] albums = check albumClient->/albums;
But if we need to send query parameters with this request like this:
albums?genre=pop
How can we do this with the above syntax?