link relations do not inherit the querystring passed to the first page, so embed=rich must be manually added to each page call

I am querying $streams and trying to page though the entries using the “next” relation. My initial GET includes “?embed=rich” in the URI, however it seems that the Uris of the link relations do not include this querystring. This seems surprising…

(Get -uri “http://127.0.0.1:2113/streams/%24streams/401522/backward/20?embed=rich”).Content
{
“title”: “Event stream ‘$streams’”,
“id”: “http://127.0.0.1:2113/streams/%24streams”,
“updated”: “2017-09-29T15:07:09.1318783Z”,
“streamId”: “$streams”,
“author”: {
“name”: “EventStore”
},
“headOfStream”: false,
“selfUrl”: “http://127.0.0.1:2113/streams/%24streams”,
“links”: [
{
“uri”: “http://127.0.0.1:2113/streams/%24streams”,
“relation”: “self”
},
{
“uri”: “http://127.0.0.1:2113/streams/%24streams/head/backward/20”,
“relation”: “first”
},
{
“uri”: “http://127.0.0.1:2113/streams/%24streams/0/forward/20”,
“relation”: “last”
},
{
“uri”: “http://127.0.0.1:2113/streams/%24streams/401502/backward/20”,
“relation”: “next”
},
{
“uri”: “http://127.0.0.1:2113/streams/%24streams/401523/forward/20”,
“relation”: “previous”
},
{
“uri”: “http://127.0.0.1:2113/streams/%24streams/metadata”,
“relation”: “metadata”
}
],

``