The docs for query show how to include just certain keys in a request, but in my use I am still seeing the query keys being included in the query string. For example:
// example request and template
this.store.query('app', { 'appName': 'foo' })
queryUrlTemplate: '{+host}/apps/{appName}/app'
Yields this url:
https://foo.com/apps/foo/app?appName=foo
When I really want just this:
https://foo.com/apps/foo/app
Are the docs incorrect or is there something I'm doing incorrectly here?
The docs for query show how to include just certain keys in a request, but in my use I am still seeing the query keys being included in the query string. For example:
Yields this url:
https://foo.com/apps/foo/app?appName=fooWhen I really want just this:
https://foo.com/apps/foo/appAre the docs incorrect or is there something I'm doing incorrectly here?