mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix: Expand nodes-base formatting validation (no-changelog) (#4689)
* ⚡ Simplify `format` command * 🎨 Format more deeply nested files
This commit is contained in:
@@ -46,7 +46,8 @@ export async function elasticsearchApiRequestAllItems(
|
||||
indexId: string,
|
||||
body: IDataObject = {},
|
||||
qs: IDataObject = {},
|
||||
): Promise<any> { //tslint:disable-line:no-any
|
||||
// tslint:disable-next-line:no-any
|
||||
): Promise<any> {
|
||||
//https://www.elastic.co/guide/en/elasticsearch/reference/7.16/paginate-search-results.html#search-after
|
||||
try {
|
||||
//create a point in time (PIT) to preserve the current index state over your searches
|
||||
|
||||
@@ -195,21 +195,16 @@ export const documentFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'By default, you cannot page through more than 10,000 hits. To page through more hits, add "Sort" from options.',
|
||||
displayName:
|
||||
'By default, you cannot page through more than 10,000 hits. To page through more hits, add "Sort" from options.',
|
||||
name: 'paginateNotice',
|
||||
type: 'notice',
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'document',
|
||||
],
|
||||
operation: [
|
||||
'getAll',
|
||||
],
|
||||
returnAll: [
|
||||
true,
|
||||
],
|
||||
resource: ['document'],
|
||||
operation: ['getAll'],
|
||||
returnAll: [true],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user