forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdmarcReportSummaryTable.js
More file actions
62 lines (60 loc) · 1.7 KB
/
Copy pathdmarcReportSummaryTable.js
File metadata and controls
62 lines (60 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
export const rawDmarcReportSummaryTableData = {
data: {
findMyDomains: {
edges: [
{
node: {
id: 'testid1=',
domain: 'domain1.ca',
dmarcSummaryByPeriod: {
month: 'LAST30DAYS',
year: '2021',
domain: { domain: 'domain1.ca' },
categoryPercentages: {
failPercentage: 31.5,
fullPassPercentage: 1.88,
passDkimOnlyPercentage: 4.51,
passSpfOnlyPercentage: 4.12,
totalMessages: 7803,
__typename: 'CategoryPercentages',
},
__typename: 'Period',
},
__typename: 'Domain',
},
__typename: 'DomainEdge',
},
{
node: {
id: 'testid2=',
domain: 'domain2.ca',
dmarcSummaryByPeriod: {
month: 'LAST30DAYS',
year: '2021',
domain: { domain: 'domain2.ca' },
categoryPercentages: {
failPercentage: 31.5,
fullPassPercentage: 1.88,
passDkimOnlyPercentage: 4.51,
passSpfOnlyPercentage: 4.12,
totalMessages: 7803,
__typename: 'CategoryPercentages',
},
__typename: 'Period',
},
__typename: 'Domain',
},
__typename: 'DomainEdge',
},
],
pageInfo: {
hasNextPage: false,
endCursor: 'endcursor=',
hasPreviousPage: false,
startCursor: 'startcursor=',
__typename: 'PageInfo',
},
__typename: 'DomainConnection',
},
},
}