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

Function gscGetTopPagesCore

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

Source from the content-addressed store, hash-verified

103}
104
105export async function gscGetTopPagesCore(input: {
106 projectId: string;
107 startDate: string;
108 endDate: string;
109 limit?: number;
110}) {
111 return getGscPages(
112 input.projectId,
113 input.startDate,
114 input.endDate,
115 input.limit ?? 100,
116 );
117}
118
119export async function gscGetPageDetailsCore(input: {
120 projectId: string;

Callers 2

gscPagesFunction · 0.90
seo.tsFile · 0.90

Calls 1

getGscPagesFunction · 0.90

Tested by

no test coverage detected