remove
Delete data from a specified collection in UniCloudDB-MCP using JQL query conditions. Execute precise removal operations with standardized database interfaces.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | 集合名称 | |
where | Yes | 查询条件 (JQL格式) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"collection": {
"description": "集合名称",
"type": "string"
},
"where": {
"additionalProperties": {},
"description": "查询条件 (JQL格式)",
"type": "object"
}
},
"required": [
"collection",
"where"
],
"type": "object"
}