mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
🐛 Fix issue with _where parameter with request library (#2352)
Fixes #2324
This commit is contained in:
@@ -25,6 +25,9 @@ export async function strapiApiRequest(this: IExecuteFunctions | ILoadOptionsFun
|
|||||||
qs,
|
qs,
|
||||||
uri: uri || `${credentials.url}${resource}`,
|
uri: uri || `${credentials.url}${resource}`,
|
||||||
json: true,
|
json: true,
|
||||||
|
qsStringifyOptions: {
|
||||||
|
arrayFormat: 'indice',
|
||||||
|
},
|
||||||
};
|
};
|
||||||
if (Object.keys(headers).length !== 0) {
|
if (Object.keys(headers).length !== 0) {
|
||||||
options.headers = Object.assign({}, options.headers, headers);
|
options.headers = Object.assign({}, options.headers, headers);
|
||||||
|
|||||||
Reference in New Issue
Block a user