From 3ef541516c986c4696df18eb1a311c0628679f8b Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Wed, 4 Feb 2026 15:50:57 +0100 Subject: [PATCH] Fix create organization node Signed-off-by: Bryan Frimin --- .../actions/organization/create.operation.ts | 24 +++++++++---------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/packages/n8n-node/nodes/Probo/actions/organization/create.operation.ts b/packages/n8n-node/nodes/Probo/actions/organization/create.operation.ts index 11269c96e..567f2f565 100644 --- a/packages/n8n-node/nodes/Probo/actions/organization/create.operation.ts +++ b/packages/n8n-node/nodes/Probo/actions/organization/create.operation.ts @@ -27,19 +27,17 @@ export async function execute( const query = ` mutation CreateOrganization($input: CreateOrganizationInput!) { createOrganization(input: $input) { - organizationEdge { - node { - id - name - description - websiteUrl - email - headquarterAddress - logoUrl - horizontalLogoUrl - createdAt - updatedAt - } + organization { + id + name + description + websiteUrl + email + headquarterAddress + logoUrl + horizontalLogoUrl + createdAt + updatedAt } } }