()
| 278 | const supabase = await createClient(); |
| 279 | |
| 280 | const baseQuery = () => |
| 281 | supabase |
| 282 | .from("mcps") |
| 283 | .select("*") |
| 284 | .eq("active", true) |
| 285 | .order("company_id", { ascending: true, nullsFirst: false }); |
| 286 | |
| 287 | if (fetchAll) { |
| 288 | return fetchAllPages((from, to) => baseQuery().range(from, to), 100); |
no outgoing calls
no test coverage detected