This is an n8n community node for InsForge - a Backend-as-a-Service platform with PostgreSQL database.
- Go to Settings > Community Nodes
- Click Install a community node
- Enter
n8n-nodes-insforge
- Click Install
npm install n8n-nodes-insforge
You need to configure InsForge API credentials:
| Field |
Description |
| Base URL |
Your InsForge backend URL (e.g., https://your-app.region.insforge.app) |
| API Key |
Your InsForge API key |
| Operation |
Description |
| Get |
Get a single row by ID |
| Get Many |
Get multiple rows with optional filters |
| Create |
Create a new row |
| Update |
Update an existing row |
| Delete |
Delete a row |
- Select Columns - Specify which columns to return (comma-separated)
- Order By - Sort results by column (append
.desc for descending)
- Filters - Add conditions to filter results
| Operator |
Description |
eq |
Equals |
neq |
Not equals |
gt |
Greater than |
gte |
Greater than or equal |
lt |
Less than |
lte |
Less than or equal |
like |
Pattern match (case sensitive) |
ilike |
Pattern match (case insensitive) |
is |
Is null/true/false |
in |
In list of values |
# Install dependencies
npm install
# Start development server
npm run dev
# Build for production
npm run build
# Lint code
npm run lint
MIT