relationalai.api.delete_reasoner()
delete_reasoner(type STRING, name STRING)A procedure that deletes an existing RAI reasoner.
Requires the eng_admin application role.
Parameters
Section titled “Parameters”| Name | Type | Description |
|---|---|---|
type | STRING | Reasoner type. Valid values: 'logic', 'prescriptive', 'predictive'. Case-insensitive. |
name | STRING | Reasoner name (case-sensitive). |
Returns
Section titled “Returns”A table with the following columns:
| Column | Type | Description |
|---|---|---|
NAME | STRING | The reasoner name. |
MESSAGE | STRING | A message describing the result. |
Example
Section titled “Example”Delete a logic reasoner named my_reasoner:
CALL relationalai.api.delete_reasoner('logic', 'my_reasoner');