Modify API to make explorations aware of their associated schema #3880
Labels
ready
Ready for implementation
restricted: maintainers
Only maintainers can resolve this issue
work: backend
Related to Python, Django, and simple SQL
Milestone
Context
Exploration
referring to aTable
which then referred to aSchema
. All of those associations were contained within the internal database.Table
model. Each exploration weakly references a table oid in the user database. And we need to look inside the user database to see what schema that table lives within.Changes needed
Here's what we'd like:
explorations.list
Add an optional
schema_oid
parameter to filter the list of explorations by schema.Modify return value to include a
schema_oid
property.explorations.get
schema_oid
property.explorations.add
schema_oid
property.To handle these changes, the service layer would need to call out to the user database for these two RPC methods.
The text was updated successfully, but these errors were encountered: