Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 7456b1b

Browse files
Add table_info function to retrieve table metadata
1 parent 56e68f3 commit 7456b1b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

‎nocodb/infra/requests_client.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,16 @@ def table_reorder(
176176
url=self.__api_info.get_table_meta_uri(tableId, "reorder"),
177177
json={ "order": order }
178178
).json()
179+
180+
def table_info(
181+
self, tableId: str,
182+
) -> dict:
183+
return self._request(
184+
"GET",
185+
url=self.__api_info.get_table_meta_uri(tableId, ""),
186+
).json()
187+
188+
179189

180190
def table_column_create(
181191
self, tableId: str, body: dict,

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /