We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the REST API, the joinable_tables API returned an object like this:
{ "joinable_tables": [ // ... ], "tables": [ // ... ], "columns": [ // ... ], }
The corresponding RPC API only returns an array of joinable table objects.
The front end needs the tables and columns properties too. Can we please add those back?
tables
columns
The text was updated successfully, but these errors were encountered:
@seancolsen Instead of having tables and columns separate are you okay if its combined?
Before
{ "tables": { "10": { "name": "Authors", "columns": [1, 2, 26] } }, "columns": { "1" : {"name": "First Name", "type": "text" }, "2" : {"name": "Last Name" , "type": "text" }, "26": {"name": "id" , "type": "integer"} } }
After
"tables": { "10": { "name": "Authors", "columns": { "1" : {"name": "First Name", "type": "text" }, "2" : {"name": "Last Name" , "type": "text" }, "26": {"name": "id" , "type": "integer"} } } }
Sorry, something went wrong.
tables.list_joinable's
are you okay if its combined?
I replied in the PR.
Anish9901
Successfully merging a pull request may close this issue.
In the REST API, the joinable_tables API returned an object like this:
The corresponding RPC API only returns an array of joinable table objects.
The front end needs the
tables
andcolumns
properties too. Can we please add those back?The text was updated successfully, but these errors were encountered: