export async function runLookQuery()

in lib/looker.ts [59:68]


export async function runLookQuery(lookId: string): Promise<string> {
  const results = await SDK.ok(
    SDK.run_look({
      look_id: lookId,
      result_format: "json",
    }),
  );

  return results;
}