Created
June 20, 2024 14:38
-
-
Save PaulieScanlon/57c155fa456cb51ee5724f2f26b5e07b to your computer and use it in GitHub Desktop.
Google Analytics query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// src/index.js#L16 | |
const [response] = await analyticsDataClient.runReport({ | |
property: `properties/${process.env.GA4_PROPERTY_ID}`, | |
dateRanges: [ | |
{ | |
startDate: '7daysAgo', | |
endDate: 'today', | |
}, | |
], | |
dimensions: [ | |
{ | |
name: 'fullPageUrl', | |
}, | |
{ | |
name: 'pageTitle', | |
}, | |
], | |
metrics: [ | |
{ | |
name: 'activeUsers', | |
}, | |
], | |
limit: 10, | |
metricAggregations: ['MAXIMUM'], | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment