跳转到主要内容
DELETE
/
table
/
{tableId}
/
field
/
{fieldId}
/
plan
cURL
curl --request DELETE \
  --url http://127.0.0.1:3000/api/table/{tableId}/field/{fieldId}/plan \
  --header 'Authorization: Bearer <token>'
{
  "estimateTime": 123,
  "graph": {
    "nodes": [
      {
        "id": "<string>",
        "label": "<string>",
        "comboId": "<string>"
      }
    ],
    "edges": [
      {
        "source": "<string>",
        "target": "<string>",
        "label": "<string>"
      }
    ],
    "combos": [
      {
        "id": "<string>",
        "label": "<string>"
      }
    ]
  },
  "updateCellCount": 123,
  "linkFieldCount": 123
}

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

路径参数

tableId
string
必填
fieldId
string
必填

响应

200 - application/json

Returns the calculation plan for deleting the field

estimateTime
number
graph
object
updateCellCount
number
Last modified on December 10, 2025