Files
probo/packages/n8n-node/nodes/Probo/actions/datum/update.operation.ts
Sacha Al Himdani ce1f2fa28c Fix Profile field name in n8n-node GraphQL queries
Rename primaryEmailAddress to emailAddress to match the Profile type
in the GraphQL schema.

Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
2026-04-16 12:14:45 +02:00

199 lines
4.5 KiB
TypeScript

// Copyright (c) 2025-2026 Probo Inc <hello@getprobo.com>.
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
import type { INodeProperties, IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
import { proboApiRequest } from '../../GenericFunctions';
export const description: INodeProperties[] = [
{
displayName: 'Datum ID',
name: 'id',
type: 'string',
displayOptions: {
show: {
resource: ['datum'],
operation: ['update'],
},
},
default: '',
description: 'The ID of the datum to update',
required: true,
},
{
displayName: 'Name',
name: 'name',
type: 'string',
displayOptions: {
show: {
resource: ['datum'],
operation: ['update'],
},
},
default: '',
description: 'The name of the datum',
},
{
displayName: 'Data Classification',
name: 'dataClassification',
type: 'options',
displayOptions: {
show: {
resource: ['datum'],
operation: ['update'],
},
},
options: [
{
name: 'Public',
value: 'PUBLIC',
},
{
name: 'Internal',
value: 'INTERNAL',
},
{
name: 'Confidential',
value: 'CONFIDENTIAL',
},
{
name: 'Secret',
value: 'SECRET',
},
],
default: 'PUBLIC',
description: 'The classification of the data',
},
{
displayName: 'Owner ID',
name: 'ownerId',
type: 'string',
displayOptions: {
show: {
resource: ['datum'],
operation: ['update'],
},
},
default: '',
description: 'The ID of the owner (People)',
},
{
displayName: 'Vendor IDs',
name: 'vendorIds',
type: 'string',
displayOptions: {
show: {
resource: ['datum'],
operation: ['update'],
},
},
default: '',
description: 'Comma-separated list of vendor IDs',
},
{
displayName: 'Options',
name: 'options',
type: 'collection',
placeholder: 'Add Option',
default: {},
displayOptions: {
show: {
resource: ['datum'],
operation: ['update'],
},
},
options: [
{
displayName: 'Include Owner',
name: 'includeOwner',
type: 'boolean',
default: false,
description: 'Whether to include owner details in the response',
},
{
displayName: 'Include Vendors',
name: 'includeVendors',
type: 'boolean',
default: false,
description: 'Whether to include vendors in the response',
},
],
},
];
export async function execute(
this: IExecuteFunctions,
itemIndex: number,
): Promise<INodeExecutionData> {
const id = this.getNodeParameter('id', itemIndex) as string;
const name = this.getNodeParameter('name', itemIndex, '') as string;
const dataClassification = this.getNodeParameter('dataClassification', itemIndex, '') as string;
const ownerId = this.getNodeParameter('ownerId', itemIndex, '') as string;
const vendorIdsStr = this.getNodeParameter('vendorIds', itemIndex, '') as string;
const options = this.getNodeParameter('options', itemIndex, {}) as {
includeOwner?: boolean;
includeVendors?: boolean;
};
const ownerFragment = options.includeOwner
? `owner {
id
fullName
emailAddress
}`
: '';
const vendorsFragment = options.includeVendors
? `vendors(first: 100) {
edges {
node {
id
name
}
}
}`
: '';
const query = `
mutation UpdateDatum($input: UpdateDatumInput!) {
updateDatum(input: $input) {
datum {
id
name
dataClassification
${ownerFragment}
${vendorsFragment}
createdAt
updatedAt
}
}
}
`;
const input: Record<string, string | string[]> = { id };
if (name) input.name = name;
if (dataClassification) input.dataClassification = dataClassification;
if (ownerId) input.ownerId = ownerId;
if (vendorIdsStr) {
const vendorIds = vendorIdsStr.split(',').map((vid) => vid.trim()).filter(Boolean);
if (vendorIds.length > 0) input.vendorIds = vendorIds;
}
const responseData = await proboApiRequest.call(this, query, { input });
return {
json: responseData,
pairedItem: { item: itemIndex },
};
}