forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathperiod.js
More file actions
60 lines (59 loc) · 1.33 KB
/
period.js
File metadata and controls
60 lines (59 loc) · 1.33 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
import { GraphQLEnumType } from 'graphql'
export const PeriodEnums = new GraphQLEnumType({
name: 'PeriodEnums',
values: {
JANUARY: {
value: 'january',
description: 'The month of January.',
},
FEBRUARY: {
value: 'february',
description: 'The month of February.',
},
MARCH: {
value: 'march',
description: 'The month of March.',
},
APRIL: {
value: 'april',
description: 'The month of April.',
},
MAY: {
value: 'may',
description: 'The month of May.',
},
JUNE: {
value: 'june',
description: 'The month of June.',
},
JULY: {
value: 'july',
description: 'The month of July.',
},
AUGUST: {
value: 'august',
description: 'The month of August.',
},
SEPTEMBER: {
value: 'september',
description: 'The month of September.',
},
OCTOBER: {
value: 'october',
description: 'The month of October.',
},
NOVEMBER: {
value: 'november',
description: 'The month of November.',
},
DECEMBER: {
value: 'december',
description: 'The month of December.',
},
LAST30DAYS: {
value: 'thirtyDays',
description: 'The last 30 days.',
},
},
description: 'An enum used to select information from the dmarc-report-api.',
})