mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 13:27:31 -08:00
⚡ Small improvements to CrateDb-Node
This commit is contained in:
parent
6a8d22d2fa
commit
7d2f225a21
|
@ -1,10 +1,19 @@
|
||||||
import { IExecuteFunctions } from 'n8n-core';
|
import { IExecuteFunctions } from 'n8n-core';
|
||||||
import { IDataObject, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
|
import {
|
||||||
|
IDataObject,
|
||||||
|
INodeExecutionData,
|
||||||
|
INodeType,
|
||||||
|
INodeTypeDescription,
|
||||||
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
|
import {
|
||||||
|
getItemCopy,
|
||||||
|
pgInsert,
|
||||||
|
pgQuery,
|
||||||
|
} from '../Postgres/Postgres.node.functions';
|
||||||
|
|
||||||
import * as pgPromise from 'pg-promise';
|
import * as pgPromise from 'pg-promise';
|
||||||
|
|
||||||
import { pgInsert, pgQuery, pgUpdate, getItemCopy } from '../Postgres/Postgres.node.functions';
|
|
||||||
|
|
||||||
export class CrateDb implements INodeType {
|
export class CrateDb implements INodeType {
|
||||||
description: INodeTypeDescription = {
|
description: INodeTypeDescription = {
|
||||||
displayName: 'CrateDB',
|
displayName: 'CrateDB',
|
||||||
|
|
Loading…
Reference in a new issue