forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverified-domain-order-field.js
More file actions
37 lines (36 loc) · 1.04 KB
/
verified-domain-order-field.js
File metadata and controls
37 lines (36 loc) · 1.04 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
import { GraphQLEnumType } from 'graphql'
export const VerifiedDomainOrderField = new GraphQLEnumType({
name: 'VerifiedDomainOrderField',
description:
'Properties by which verified domain connections can be ordered.',
values: {
DOMAIN: {
value: 'domain',
description: 'Order verified domain edges by domain.',
},
LAST_RAN: {
value: 'last-ran',
description: 'Order verified domain edges by last ran.',
},
DKIM_STATUS: {
value: 'dkim-status',
description: 'Order verified domain edges by dkim status.',
},
DMARC_STATUS: {
value: 'dmarc-status',
description: 'Order verified domain edges by dmarc status.',
},
HTTPS_STATUS: {
value: 'https-status',
description: 'Order verified domain edges by https status.',
},
SPF_STATUS: {
value: 'spf-status',
description: 'Order verified domain edges by spf status.',
},
SSL_STATUS: {
value: 'ssl-status',
description: 'Order verified domain edges by ssl status.',
},
},
})