mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
|
import type {
|
||
|
IDataObject,
|
||
|
IExecuteFunctions,
|
||
|
INodeExecutionData,
|
||
|
INodeProperties,
|
||
|
} from 'n8n-workflow';
|
||
|
import { theHiveApiRequest } from '../../transport';
|
||
|
import { observableRLC } from '../../descriptions';
|
||
|
import { updateDisplayOptions, wrapData } from '@utils/utilities';
|
||
|
|
||
|
const properties: INodeProperties[] = [observableRLC];
|
||
|
|
||
|
const displayOptions = {
|
||
|
show: {
|
||
|
resource: ['observable'],
|
||
|
operation: ['get'],
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const description = updateDisplayOptions(displayOptions, properties);
|
||
|
|
||
|
export async function execute(this: IExecuteFunctions, i: number): Promise<INodeExecutionData[]> {
|
||
|
let responseData: IDataObject | IDataObject[] = [];
|
||
|
|
||
|
const observableId = this.getNodeParameter('observableId', i, '', {
|
||
|
extractValue: true,
|
||
|
}) as string;
|
||
|
|
||
|
const qs: IDataObject = {};
|
||
|
|
||
|
const body = {
|
||
|
query: [
|
||
|
{
|
||
|
_name: 'getObservable',
|
||
|
idOrName: observableId,
|
||
|
},
|
||
|
],
|
||
|
};
|
||
|
|
||
|
qs.name = `get-observable-${observableId}`;
|
||
|
|
||
|
responseData = await theHiveApiRequest.call(this, 'POST', '/v1/query', body, qs);
|
||
|
|
||
|
const executionData = this.helpers.constructExecutionMetaData(wrapData(responseData), {
|
||
|
itemData: { item: i },
|
||
|
});
|
||
|
|
||
|
return executionData;
|
||
|
}
|