action superset_post_saved_query { label: "post_saved_query" description: "Create a saved query" provider: superset method: POST path: "/saved_query/" encoding: json input: { type: "object" properties: { db_id: { type: "integer" format: "int32" } description: { type: "string" } label: { type: "string" } schema: { type: "string" } sql: { type: "string" } } } output: { type: "object" properties: { id: { type: "string" } result: { type: "object" properties: { db_id: { type: "integer" format: "int32" } description: { type: "string" } label: { type: "string" } schema: { type: "string" } sql: { type: "string" } } } } } }