We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b7e9fa commit bfe5e6fCopy full SHA for bfe5e6f
src/app/api/monitoring/route.ts
@@ -35,7 +35,19 @@ async function getSearchResultsByModeId(mode_id: string) {
35
let query = supabase
36
.from('scheduled_queries')
37
.select(`
38
- *
+ id,
39
+ query,
40
+ last_analysis_at,
41
+ next_analysis_at,
42
+ frequency,
43
+ mode,
44
+ mode_id,
45
+ status,
46
+ location,
47
+ attached_brand_id,
48
+ selected_models,
49
+ credits_per_run,
50
+ include_google_search
51
`)
52
.eq('user_id', user_id)
53
.order('last_analysis_at', { ascending: false });
0 commit comments