mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
62c096710f
- Fix autofixable violations - Remove unused directives - Allow for PascalCased variables - needed for dynamically imported or assigned classes, decorators, routers, etc.
48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
import type {
|
|
IDataObject,
|
|
IExecuteFunctions,
|
|
INodeExecutionData,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
import { theHiveApiRequest } from '../../transport';
|
|
import { taskRLC } from '../../descriptions';
|
|
import { updateDisplayOptions, wrapData } from '@utils/utilities';
|
|
|
|
const properties: INodeProperties[] = [taskRLC];
|
|
|
|
const displayOptions = {
|
|
show: {
|
|
resource: ['task'],
|
|
operation: ['get'],
|
|
},
|
|
};
|
|
|
|
export const description = updateDisplayOptions(displayOptions, properties);
|
|
|
|
export async function execute(this: IExecuteFunctions, i: number): Promise<INodeExecutionData[]> {
|
|
let responseData: IDataObject | IDataObject[] = [];
|
|
|
|
const taskId = this.getNodeParameter('taskId', i, '', { extractValue: true }) as string;
|
|
|
|
const qs: IDataObject = {};
|
|
|
|
const body = {
|
|
query: [
|
|
{
|
|
_name: 'getTask',
|
|
idOrName: taskId,
|
|
},
|
|
],
|
|
};
|
|
|
|
qs.name = `get-task-${taskId}`;
|
|
|
|
responseData = await theHiveApiRequest.call(this, 'POST', '/v1/query', body, qs);
|
|
|
|
const executionData = this.helpers.constructExecutionMetaData(wrapData(responseData), {
|
|
itemData: { item: i },
|
|
});
|
|
|
|
return executionData;
|
|
}
|