* Delete the given record. * * @param recordId the record to be deleted. * @returns * * #### Description * Delete a record by recordId. * * Throws an error if the user does not have permission to delete the given record. * * #### Example * ```js * async function d
(recordId: string)
| 555 | * ``` |
| 556 | */ |
| 557 | deleteRecord(recordId: string) { |
| 558 | return this.deleteRecords([recordId]); |
| 559 | } |
| 560 | |
| 561 | /** |
| 562 | * Delete the given records. |
no test coverage detected