Execute SQL queries on your GigAPI cluster. Input: sql (string): The SQL query to execute, database (string): The database to execute against. All queries are executed safely through GigAPI's HTTP API with NDJSON format.
list_databases
List all databases on your GigAPI cluster. Input: database (string): The database to use for the SHOW DATABASES query (defaults to 'mydb').
list_tables
List all tables in a database. Input: database (string): The name of the database.
get_table_schema
Get schema information for a specific table. Input: database (string): The name of the database, table (string): The name of the table.
write_data
Write data using InfluxDB Line Protocol format. Input: database (string): The database to write to, data (string): Data in InfluxDB Line Protocol format.