mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
44 lines
1 KiB
TypeScript
44 lines
1 KiB
TypeScript
import type {
|
|
IDataObject,
|
|
IExecuteFunctions,
|
|
INodeExecutionData,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
import { updateDisplayOptions, wrapData } from '@utils/utilities';
|
|
import { theHiveApiRequest } from '../../transport';
|
|
import { logRLC } from '../../descriptions';
|
|
|
|
const properties: INodeProperties[] = [logRLC];
|
|
|
|
const displayOptions = {
|
|
show: {
|
|
resource: ['log'],
|
|
operation: ['get'],
|
|
},
|
|
};
|
|
|
|
export const description = updateDisplayOptions(displayOptions, properties);
|
|
|
|
export async function execute(this: IExecuteFunctions, i: number): Promise<INodeExecutionData[]> {
|
|
let responseData: IDataObject | IDataObject[] = [];
|
|
|
|
const logId = this.getNodeParameter('logId', i, '', { extractValue: true }) as string;
|
|
|
|
const body = {
|
|
query: [
|
|
{
|
|
_name: 'getLog',
|
|
idOrName: logId,
|
|
},
|
|
],
|
|
};
|
|
|
|
responseData = await theHiveApiRequest.call(this, 'POST', '/v1/query', body);
|
|
|
|
const executionData = this.helpers.constructExecutionMetaData(wrapData(responseData), {
|
|
itemData: { item: i },
|
|
});
|
|
|
|
return executionData;
|
|
}
|