action superset_get_query_pk { label: "get_query_pk" description: "Get query detail information." provider: superset method: GET path: "/query/{pk}" encoding: json input: { type: "object" properties: { pk: { type: "integer" } q: { type: "string" } } required: ["pk"] additionalProperties: false } output: { type: "object" properties: { description_columns: { type: "object" properties: { column_name: { type: "string" description: "The description for the column name. Will be translated by babel" } } } id: { type: "string" description: "The item id" } label_columns: { type: "object" properties: { column_name: { type: "string" description: "The label for the column name. Will be translated by babel" } } } result: { type: "object" required: ["client_id", "database"] properties: { changed_on: { type: "string" format: "date-time" } client_id: { type: "string" } database: { type: "object" properties: { id: { type: "integer" format: "int32" } } } end_result_backend_time: { type: "number" } end_time: { type: "number" } error_message: { type: "string" } executed_sql: { type: "string" } id: { type: "integer" format: "int32" } limit: { type: "integer" format: "int32" } progress: { type: "integer" format: "int32" } results_key: { type: "string" } rows: { type: "integer" format: "int32" } schema: { type: "string" } select_as_cta: { type: "boolean" } select_as_cta_used: { type: "boolean" } select_sql: { type: "string" } sql: { type: "string" } sql_editor_id: { type: "string" } start_running_time: { type: "number" } start_time: { type: "number" } status: { type: "string" } tab_name: { type: "string" } tmp_schema_name: { type: "string" } tmp_table_name: { type: "string" } tracking_url: { type: "string" } } } show_columns: { type: "array" description: "A list of columns" items: { type: "string" } } show_title: { type: "string" description: "A title to render. Will be translated by babel" } } } }