forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverified-organization-order-field.js
More file actions
57 lines (56 loc) · 1.76 KB
/
verified-organization-order-field.js
File metadata and controls
57 lines (56 loc) · 1.76 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
import { GraphQLEnumType } from 'graphql'
export const VerifiedOrganizationOrderField = new GraphQLEnumType({
name: 'VerifiedOrganizationOrderField',
description:
'Properties by which verified organization connections can be ordered.',
values: {
ACRONYM: {
value: 'acronym',
description: 'Order verified organization edges by acronym.',
},
NAME: {
value: 'name',
description: 'Order verified organization edges by name.',
},
ZONE: {
value: 'zone',
description: 'Order verified organization edges by zone.',
},
SECTOR: {
value: 'sector',
description: 'Order verified organization edges by sector.',
},
COUNTRY: {
value: 'country',
description: 'Order verified organization edges by country.',
},
SUMMARY_MAIL_PASS: {
value: 'summary-mail-pass',
description: 'Order verified organizations by summary mail pass count.',
},
SUMMARY_MAIL_FAIL: {
value: 'summary-mail-fail',
description: 'Order verified organizations by summary mail fail count.',
},
SUMMARY_MAIL_TOTAL: {
value: 'summary-mail-total',
description: 'Order verified organizations by summary mail total count.',
},
SUMMARY_WEB_PASS: {
value: 'summary-web-pass',
description: 'Order verified organizations by summary web pass count.',
},
SUMMARY_WEB_FAIL: {
value: 'summary-web-fail',
description: 'Order verified organizations by summary web fail count.',
},
SUMMARY_WEB_TOTAL: {
value: 'summary-web-total',
description: 'Order verified organizations by summary web total count.',
},
DOMAIN_COUNT: {
value: 'domain-count',
description: 'Order verified organizations by domain count.',
},
},
})