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 } } }