We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f7992e commit ec2b42dCopy full SHA for ec2b42d
controlplane/src/core/bufservices/analytics/getOperationClients.ts
@@ -70,7 +70,8 @@ export function getOperationClients(
70
const parsedDateRange = isoDateRangeToTimestamps(validatedDateRange, range || 24);
71
const [startTimestamp, endTimestamp] = getDateRange(parsedDateRange);
72
73
- const operationNameFilter = req.operationName === undefined ? '' : `AND OperationName = '${req.operationName.replace(/'/g, "''")}'`;
+ const operationNameFilter =
74
+ req.operationName === undefined ? '' : `AND OperationName = '${req.operationName.replace(/'/g, "''")}'`;
75
76
const query = `
77
WITH
0 commit comments