Skip to content

Commit fba003a

Browse files
committed
Add missing parameters in srv.send
1 parent 6c668e1 commit fba003a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

node.js/core-services.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ Error handlers are invoked whenever an error occurs during event processing of *
772772

773773
```ts
774774
async function srv.send (
775-
method : string | { method, path?, data?, headers? },
775+
method : string | { method, path?, data?, headers? } | { query, headers? },
776776
path? : string,
777777
data? : object | any,
778778
headers? : object
@@ -812,6 +812,10 @@ let req = new cds.Request (
812812
)
813813
return this.dispatch(req)
814814
```
815+
Use this method instead of [`srv.run(query)`](#srv-run-query), if headers should be added to the request object. For example:
816+
```js
817+
await srv.send({ query: SELECT.from('Books'), headers: { some: 'header' } })
818+
```
815819

816820
*See also [REST-Style Convenience API](#rest-style-api) below* {.learn-more}
817821

0 commit comments

Comments
 (0)