I am using code repository to create Typescript functions. I tag and release these functions and use @Queries decorator to expose them for testing via Postman and outside of Palantir.
- When I deploy the test function, what region does it get deployed?
- Is there a dashboard to check this query regional information?
- My understanding is that the queries are serverless functions, and hence it will always be executed in the closest location from where the call was triggered. Is this understanding correct?
My query looks like the following:
@Query({apiName: "testFunction"})
async getTestFunction(x: string[]): Promise<string>
{
console.log("test function");
}
Thanks!