Presently when I need just one parameter I have to call method query this way:
$client.query($sql, [42]);
because the method is defined as
method query(Str $query, @values? --> Promise)
If it were defined as
method query(Str $query, *@values --> Promise)
I could use both a scalar or a Positional (or no parameter at all).