-- Fetch all the Meetings belonging to the Zoom
-- account of a particular user.
SELECT *
FROM fiber.zoom_meeting
WHERE account_id = '{user.zoom_id}'
-- Fetch all the Meetings belonging to the Zoom
-- account of a particular user.
SELECT *
FROM fiber.zoom_meeting
WHERE account_id = '{user.zoom_id}'
Code
CREATE TABLE fiber.zoom_meeting (
id TEXT NOT NULL,
created_at TIMESTAMP WITH TIME ZONE,
updated_at TIMESTAMP WITH TIME ZONE,
account_id TEXT,
agenda TEXT,
created_at TEXT,
duration DOUBLE PRECISION,
host_id TEXT,
join_url TEXT,
pmi TEXT,
start_time TEXT,
timezone TEXT,
topic TEXT,
type INT,
uuid TEXT
)
CREATE TABLE fiber.zoom_meeting (
id TEXT NOT NULL,
created_at TIMESTAMP WITH TIME ZONE,
updated_at TIMESTAMP WITH TIME ZONE,
account_id TEXT,
agenda TEXT,
created_at TEXT,
duration DOUBLE PRECISION,
host_id TEXT,
join_url TEXT,
pmi TEXT,
start_time TEXT,
timezone TEXT,
topic TEXT,
type INT,
uuid TEXT
)
Model definition