How can I get Unique Visitors from GraphQl API ?
help me with the qraphql query please
How can I get Unique Visitors from GraphQl API ?
help me with the qraphql query please
I got the same request… need to get unique visitors for a zone/website. Cannot find proper examples or documentation on how to achieve this
Hey, just found out guys.
query {
viewer {
zones(filter: { zoneTag: “{Your Zone ID}” }) {
httpRequests1dGroups(filter: { date: “2023-01-24” }, limit: 1) {
uniq {
uniques
}
}
}
}
}