Browse Source

refactor(nocodb): return ColumnList response

pull/5269/head
Wing-Kam Wong 2 years ago
parent
commit
3a8b5408f8
  1. 62
      packages/nocodb/src/schema/swagger.json

62
packages/nocodb/src/schema/swagger.json

@ -3969,7 +3969,67 @@
"operationId": "db-view-column-list",
"responses": {},
"tags": ["DB View Column"],
"description": "List all columns by ViewID"
"description": "List all columns by ViewID",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ColumnList"
},
"examples": {
"Example 1": {
"value": {
"list": [
{
"ai": 0,
"au": 0,
"base_id": "ds_krsappzu9f8vmo",
"cc": "",
"cdf": null,
"clen": "45",
"column_name": "title",
"cop": "2",
"created_at": "2023-03-02 13:14:16",
"csn": "utf8mb4",
"ct": "varchar(45)",
"deleted": null,
"dt": "varchar",
"dtx": "specificType",
"dtxp": "45",
"dtxs": null,
"fk_model_id": "md_yvwvbt2i78rgcm",
"id": "cl_0j9gv0oi8vjy46",
"meta": null,
"np": null,
"ns": null,
"order": 2,
"pk": 0,
"project_id": "p_01clqvzik3izk6",
"pv": 1,
"rqd": 0,
"system": 0,
"title": "Title",
"uidt": "SingleLineText",
"un": 0,
"unique": 0,
"updated_at": "2023-03-02 13:14:16",
"validate": null,
"virtual": null
}
],
"pageInfo": {
"isFirstPage": true,
"isLastPage": true,
"page": 1,
"pageSize": 10,
"totalRows": 1
}
}
}
}
}
}
}
},
"post": {
"summary": "Create Column in View",

Loading…
Cancel
Save