Search.../

onExternalDatabaseConnectionUpdated( )

Developer Preview

Triggered when an external database connection is updated.

Syntax

function wixData_onExternalDatabaseConnectionUpdated(event: ExternalDatabaseConnectionUpdated): void

onExternalDatabaseConnectionUpdated Parameters

NAME
TYPE
DESCRIPTION
event
Optional
ExternalDatabaseConnectionUpdated

Returns

This function does not return anything.

Return Type:

void

Was this helpful?

onExternalDatabaseConnectionUpdated example

Copy Code
1
2 export function wixData_onExternalDatabaseConnectionUpdated(event) {
3 const eventId = event.metadata.id
4 const entityId = event.entity._id;
5 }
6
7