We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aed705b commit a69e488Copy full SHA for a69e488
lib/superset/database/export.rb
@@ -51,7 +51,11 @@ def exported_zip_path
51
private
52
53
def params
54
- { "q": "!(#{database_id})" } # pulled off chrome dev tools doing a GUI export. Swagger interface not helpfull with this endpoint.
+ # The Swagger API interface indicates this endpoint should take an array of integers
55
+ # however this does not work within the Swagger interface or when testing the API
56
+ # Investigating the Superset GUI with Dev Tools shows that the format below is used
57
+
58
+ { "q": "!(#{database_id})" }
59
end
60
61
def save_exported_zip_file
0 commit comments