forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdmarcFailureData.js
More file actions
44 lines (44 loc) · 1.26 KB
/
dmarcFailureData.js
File metadata and controls
44 lines (44 loc) · 1.26 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
export const rawDmarcFailureData = {
data: {
findDomainByDomain: {
id: 'testid=',
__typename: 'Domain',
dmarcSummaryByPeriod: {
__typename: 'Period',
domain: { domain: 'test.domain.ca' },
month: 'LAST30DAYS',
year: '2020',
detailTables: {
dmarcFailure: {
edges: [
{
node: {
dkimDomains: '',
dkimSelectors: '',
disposition: 'none',
dnsHost: 'test.dns.ca',
envelopeFrom: null,
headerFrom: 'test.header.ca',
sourceIpAddress: '123.123.123.123',
spfDomains: 'test.spf.ca',
totalMessages: 112,
__typename: 'DmarcFailureTable',
},
__typename: 'DmarcFailureTableEdge',
},
],
pageInfo: {
hasNextPage: false,
endCursor: 'endcursor',
hasPreviousPage: false,
startCursor: 'startcursor=',
__typename: 'PageInfo',
},
__typename: 'DmarcFailureTableConnection',
},
__typename: 'DetailTables',
},
},
},
},
}