Files
2025-09-08 04:48:28 +08:00

22 lines
262 B
TypeScript
Executable File

import type { IDataObject } from 'n8n-workflow';
export interface IData {
data: [
{
id: string;
},
];
}
export interface IRelation {
data: [
{
relationships: {
identities: IData;
member: IData;
};
},
];
included: IDataObject[];
}