Is it possible to use `ld.discovery.search` for multiple instruments? When I try:
```
ld.discovery.search( # view="EquityInstruments", query=["PA1436583006", "US5128071082"], select='ExchangeCode')
```
I get:
`LDError: Error code 400 | Validation error: json.Query in body must be of type string: "array"`
even though
```
ld.discovery.search( # view="EquityInstruments", query="PA1436583006", # ,US5128071082", select='ExchangeCode')
```
works fine…
Is there away to make this work using the backend API and RDP? And if there is, does it help in reducing the number of API calls made? I'm asking because otherwise I'm better off writing a loop with `ld.discovery.search`, but I'm afraid that I'll reach my API limit quickly…