first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,133 @@
|
||||
import type { IDataObject, INodeProperties } from 'n8n-workflow';
|
||||
import { jsonParse } from 'n8n-workflow';
|
||||
|
||||
export const questionsOperations: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Operation',
|
||||
name: 'operation',
|
||||
type: 'options',
|
||||
noDataExpression: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['questions'],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get a specific question',
|
||||
routing: {
|
||||
request: {
|
||||
method: 'GET',
|
||||
url: '={{"/api/card/" + $parameter.questionId}}',
|
||||
},
|
||||
},
|
||||
action: 'Get a questions',
|
||||
},
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get many questions',
|
||||
routing: {
|
||||
request: {
|
||||
method: 'GET',
|
||||
url: '/api/card/',
|
||||
},
|
||||
},
|
||||
action: 'Get many questions',
|
||||
},
|
||||
{
|
||||
name: 'Result Data',
|
||||
value: 'resultData',
|
||||
description: 'Return the result of the question to a specific file format',
|
||||
routing: {
|
||||
request: {
|
||||
method: 'POST',
|
||||
url: '={{"/api/card/" + $parameter.questionId + "/query/" + $parameter.format}}',
|
||||
returnFullResponse: true,
|
||||
encoding: 'arraybuffer',
|
||||
},
|
||||
output: {
|
||||
postReceive: [
|
||||
async function (this, items, responseData) {
|
||||
const datatype = this.getNodeParameter('format') as string;
|
||||
|
||||
if (datatype !== 'json') {
|
||||
const binaryData = await this.helpers.prepareBinaryData(
|
||||
responseData.body as Buffer,
|
||||
'data',
|
||||
responseData.headers['content-type'] as string,
|
||||
);
|
||||
|
||||
// Transform items
|
||||
items = items.map((item) => {
|
||||
item.json = {};
|
||||
item.binary = { ['data']: binaryData };
|
||||
return item;
|
||||
});
|
||||
} else {
|
||||
const results = jsonParse<IDataObject[]>(responseData.body as unknown as string);
|
||||
items = results.map((result) => {
|
||||
return {
|
||||
json: {
|
||||
...result,
|
||||
},
|
||||
};
|
||||
});
|
||||
}
|
||||
return items;
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
action: 'Get the results from a question',
|
||||
},
|
||||
],
|
||||
default: 'getAll',
|
||||
},
|
||||
];
|
||||
|
||||
export const questionsFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Question ID',
|
||||
name: 'questionId',
|
||||
type: 'string',
|
||||
required: true,
|
||||
placeholder: '0',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['questions'],
|
||||
operation: ['get', 'resultData'],
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Format',
|
||||
name: 'format',
|
||||
type: 'options',
|
||||
required: true,
|
||||
options: [
|
||||
{
|
||||
name: 'CSV',
|
||||
value: 'csv',
|
||||
},
|
||||
{
|
||||
name: 'JSON',
|
||||
value: 'json',
|
||||
},
|
||||
{
|
||||
name: 'XLSX',
|
||||
value: 'xlsx',
|
||||
},
|
||||
],
|
||||
default: 'csv',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['questions'],
|
||||
operation: ['resultData'],
|
||||
},
|
||||
},
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user