Search.../

query

Returns the query fields and values of the URL used to call an HTTP function.

Description

Premium sites: Premium site query

Free sites: Free site query

Type:

ObjectRead Only

Was this helpful?

Get the query of the URL from a call to an HTTP function

Copy Code
1// In http-functions.js
2
3export function use_myFunction(request) {
4
5 let query = request.query; // {"q": "value"}
6
7}