MCPcopy Create free account
hub / github.com/Openpanel-dev/openpanel / gscGetTopQueriesCore

Function gscGetTopQueriesCore

packages/db/src/services/gsc.service.ts:133–145  ·  view source on GitHub ↗
(input: {
  projectId: string;
  startDate: string;
  endDate: string;
  limit?: number;
})

Source from the content-addressed store, hash-verified

131}
132
133export async function gscGetTopQueriesCore(input: {
134 projectId: string;
135 startDate: string;
136 endDate: string;
137 limit?: number;
138}) {
139 return getGscQueries(
140 input.projectId,
141 input.startDate,
142 input.endDate,
143 input.limit ?? 100,
144 );
145}
146
147export async function gscGetQueryOpportunitiesCore(input: {
148 projectId: string;

Callers 2

gscQueriesFunction · 0.90
seo.tsFile · 0.90

Calls 1

getGscQueriesFunction · 0.90

Tested by

no test coverage detected