forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorganization-order-field.js
More file actions
72 lines (71 loc) · 1.98 KB
/
organization-order-field.js
File metadata and controls
72 lines (71 loc) · 1.98 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
63
64
65
66
67
68
69
70
71
72
import { GraphQLEnumType } from 'graphql'
export const OrganizationOrderField = new GraphQLEnumType({
name: 'OrganizationOrderField',
values: {
ACRONYM: {
value: 'acronym',
description: 'Order organizations by acronym.',
},
NAME: {
value: 'name',
description: 'Order organizations by name.',
},
SLUG: {
value: 'slug',
description: 'Order organizations by slug.',
},
ZONE: {
value: 'zone',
description: 'Order organizations by zone.',
},
SECTOR: {
value: 'sector',
description: 'Order organizations by sector.',
},
COUNTRY: {
value: 'country',
description: 'Order organizations by country.',
},
PROVINCE: {
value: 'province',
description: 'Order organizations by province.',
},
CITY: {
value: 'city',
description: 'Order organizations by city.',
},
VERIFIED: {
value: 'verified',
description: 'Order organizations by verified.',
},
SUMMARY_MAIL_PASS: {
value: 'summary-mail-pass',
description: 'Order organizations by summary mail pass count.',
},
SUMMARY_MAIL_FAIL: {
value: 'summary-mail-fail',
description: 'Order organizations by summary mail fail count.',
},
SUMMARY_MAIL_TOTAL: {
value: 'summary-mail-total',
description: 'Order organizations by summary mail total count.',
},
SUMMARY_WEB_PASS: {
value: 'summary-web-pass',
description: 'Order organizations by summary web pass count.',
},
SUMMARY_WEB_FAIL: {
value: 'summary-web-fail',
description: 'Order organizations by summary web fail count.',
},
SUMMARY_WEB_TOTAL: {
value: 'summary-web-total',
description: 'Order organizations by summary web total count.',
},
DOMAIN_COUNT: {
value: 'domain-count',
description: 'Order organizations by domain count.',
},
},
description: 'Properties by which organization connections can be ordered.',
})