@paris-ias/list 1.0.111 → 1.0.113

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/events/DenseItem.vue +24 -15
  3. package/dist/runtime/components/fellowships/DenseItem.vue +1 -1
  4. package/dist/runtime/components/list/atoms/SearchInput.vue +4 -2
  5. package/dist/runtime/components/list/molecules/Pagination.vue +2 -0
  6. package/dist/runtime/components/list/organisms/List.vue +16 -2
  7. package/dist/runtime/components/list/views/Dense.vue +0 -1
  8. package/dist/runtime/components/news/DenseItem.vue +24 -23
  9. package/dist/runtime/components/people/Badges.vue +74 -0
  10. package/dist/runtime/components/people/DenseItem.vue +11 -8
  11. package/dist/runtime/components/people/RowsItem.vue +2 -2
  12. package/dist/runtime/components/people/View.vue +1 -1
  13. package/dist/runtime/components/publications/DenseItem.vue +14 -7
  14. package/dist/runtime/graphql/list/publications.gql +2 -0
  15. package/dist/runtime/runtime/components/actions/ExpandedItem.vue +14 -0
  16. package/dist/runtime/runtime/components/actions/RowsItem.vue +12 -0
  17. package/dist/runtime/runtime/components/actions/View.vue +20 -0
  18. package/dist/runtime/runtime/components/affiliations/ExpandedItem.vue +14 -0
  19. package/dist/runtime/runtime/components/affiliations/RowsItem.vue +12 -0
  20. package/dist/runtime/runtime/components/affiliations/View.vue +20 -0
  21. package/dist/runtime/runtime/components/apps/ExpandedItem.vue +14 -0
  22. package/dist/runtime/runtime/components/apps/RowsItem.vue +12 -0
  23. package/dist/runtime/runtime/components/apps/View.vue +20 -0
  24. package/dist/runtime/runtime/components/disciplines/ExpandedItem.vue +14 -0
  25. package/dist/runtime/runtime/components/disciplines/RowsItem.vue +12 -0
  26. package/dist/runtime/runtime/components/disciplines/View.vue +20 -0
  27. package/dist/runtime/runtime/components/events/Badges.vue +73 -0
  28. package/dist/runtime/runtime/components/events/DateTimePlace.vue +77 -0
  29. package/dist/runtime/runtime/components/events/DenseItem.vue +60 -0
  30. package/dist/runtime/runtime/components/events/ExpandedItem.vue +9 -0
  31. package/dist/runtime/runtime/components/events/RegisterModal.vue +50 -0
  32. package/dist/runtime/runtime/components/events/RelatedItem.vue +44 -0
  33. package/dist/runtime/runtime/components/events/RowsItem.vue +118 -0
  34. package/dist/runtime/runtime/components/events/SlidingItem.vue +63 -0
  35. package/dist/runtime/runtime/components/events/View.vue +333 -0
  36. package/dist/runtime/runtime/components/fellowships/Badges.vue +47 -0
  37. package/dist/runtime/runtime/components/fellowships/DenseItem.vue +42 -0
  38. package/dist/runtime/runtime/components/fellowships/ExpandedItem.vue +7 -0
  39. package/dist/runtime/runtime/components/fellowships/RegisterModal.vue +41 -0
  40. package/dist/runtime/runtime/components/fellowships/RowsItem.vue +58 -0
  41. package/dist/runtime/runtime/components/fellowships/View.vue +203 -0
  42. package/dist/runtime/runtime/components/files/ExpandedItem.vue +14 -0
  43. package/dist/runtime/runtime/components/files/RowsItem.vue +12 -0
  44. package/dist/runtime/runtime/components/files/View.vue +20 -0
  45. package/dist/runtime/runtime/components/list/atoms/FiltersMenu.vue +44 -0
  46. package/dist/runtime/runtime/components/list/atoms/ResetButton.vue +33 -0
  47. package/dist/runtime/runtime/components/list/atoms/ResultsList.vue +27 -0
  48. package/dist/runtime/runtime/components/list/atoms/SearchInput.vue +59 -0
  49. package/dist/runtime/runtime/components/list/atoms/SearchItem.vue +65 -0
  50. package/dist/runtime/runtime/components/list/atoms/SearchString.vue +160 -0
  51. package/dist/runtime/runtime/components/list/atoms/SortMenu.vue +80 -0
  52. package/dist/runtime/runtime/components/list/atoms/ViewMenu.vue +63 -0
  53. package/dist/runtime/runtime/components/list/atoms/itemsPerPage.vue +33 -0
  54. package/dist/runtime/runtime/components/list/inputs/AutoComplete.vue +24 -0
  55. package/dist/runtime/runtime/components/list/inputs/BooleanSwitch.vue +20 -0
  56. package/dist/runtime/runtime/components/list/inputs/Checkbox.vue +20 -0
  57. package/dist/runtime/runtime/components/list/inputs/Select.vue +28 -0
  58. package/dist/runtime/runtime/components/list/molecules/Filters.vue +98 -0
  59. package/dist/runtime/runtime/components/list/molecules/GlobalSearchInput.vue +131 -0
  60. package/dist/runtime/runtime/components/list/molecules/Header.vue +51 -0
  61. package/dist/runtime/runtime/components/list/molecules/Pagination.vue +194 -0
  62. package/dist/runtime/runtime/components/list/molecules/ResultsContainer.vue +78 -0
  63. package/dist/runtime/runtime/components/list/organisms/List.vue +110 -0
  64. package/dist/runtime/runtime/components/list/organisms/Results.vue +72 -0
  65. package/dist/runtime/runtime/components/list/organisms/Slider.vue +180 -0
  66. package/dist/runtime/runtime/components/list/views/Dense.vue +12 -0
  67. package/dist/runtime/runtime/components/list/views/Expanded.vue +10 -0
  68. package/dist/runtime/runtime/components/list/views/Grid.vue +13 -0
  69. package/dist/runtime/runtime/components/list/views/Rows.vue +12 -0
  70. package/dist/runtime/runtime/components/list/views/Slider.vue +147 -0
  71. package/dist/runtime/runtime/components/list/views/Table.vue +13 -0
  72. package/dist/runtime/runtime/components/mailing/ExpandedItem.vue +14 -0
  73. package/dist/runtime/runtime/components/mailing/RowsItem.vue +12 -0
  74. package/dist/runtime/runtime/components/mailing/View.vue +20 -0
  75. package/dist/runtime/runtime/components/misc/atoms/DateStamp.vue +101 -0
  76. package/dist/runtime/runtime/components/misc/atoms/ImageContainer.vue +127 -0
  77. package/dist/runtime/runtime/components/misc/atoms/ShareMenu.vue +61 -0
  78. package/dist/runtime/runtime/components/misc/atoms/Socials.vue +120 -0
  79. package/dist/runtime/runtime/components/misc/molecules/ChipContainer.vue +31 -0
  80. package/dist/runtime/runtime/components/misc/molecules/Related.vue +28 -0
  81. package/dist/runtime/runtime/components/misc/molecules/RelatedItems.vue +27 -0
  82. package/dist/runtime/runtime/components/misc/molecules/SearchItem.vue +26 -0
  83. package/dist/runtime/runtime/components/news/DenseItem.vue +73 -0
  84. package/dist/runtime/runtime/components/news/ExpandedItem.vue +145 -0
  85. package/dist/runtime/runtime/components/news/Header.vue +7 -0
  86. package/dist/runtime/runtime/components/news/RelatedItem.vue +44 -0
  87. package/dist/runtime/runtime/components/news/RowsItem.vue +182 -0
  88. package/dist/runtime/runtime/components/news/View.vue +174 -0
  89. package/dist/runtime/runtime/components/people/DenseItem.vue +60 -0
  90. package/dist/runtime/runtime/components/people/ExpandedItem.vue +14 -0
  91. package/dist/runtime/runtime/components/people/RelatedItem.vue +41 -0
  92. package/dist/runtime/runtime/components/people/RowsItem.vue +93 -0
  93. package/dist/runtime/runtime/components/people/View.vue +172 -0
  94. package/dist/runtime/runtime/components/projects/DenseItem.vue +77 -0
  95. package/dist/runtime/runtime/components/projects/ExpandedItem.vue +12 -0
  96. package/dist/runtime/runtime/components/projects/RelatedItem.vue +44 -0
  97. package/dist/runtime/runtime/components/projects/RowsItem.vue +103 -0
  98. package/dist/runtime/runtime/components/projects/View.vue +130 -0
  99. package/dist/runtime/runtime/components/publications/DenseItem.vue +89 -0
  100. package/dist/runtime/runtime/components/publications/RelatedItem.vue +44 -0
  101. package/dist/runtime/runtime/components/publications/RowsItem.vue +105 -0
  102. package/dist/runtime/runtime/components/publications/View.vue +132 -0
  103. package/dist/runtime/runtime/components/tags/ExpandedItem.vue +14 -0
  104. package/dist/runtime/runtime/components/tags/RowsItem.vue +12 -0
  105. package/dist/runtime/runtime/components/tags/View.vue +20 -0
  106. package/dist/runtime/runtime/components/users/ExpandedItem.vue +14 -0
  107. package/dist/runtime/runtime/components/users/RowsItem.vue +12 -0
  108. package/dist/runtime/runtime/components/users/View.vue +20 -0
  109. package/dist/runtime/runtime/composables/useFetchItem.d.ts +6 -0
  110. package/dist/runtime/runtime/composables/useFetchItem.js +49 -0
  111. package/dist/runtime/runtime/composables/useIcons.d.ts +1 -0
  112. package/dist/runtime/runtime/composables/useIcons.js +30 -0
  113. package/dist/runtime/runtime/composables/useUtils.d.ts +12 -0
  114. package/dist/runtime/runtime/composables/useUtils.js +48 -0
  115. package/dist/runtime/runtime/graphql/buildFiltersValues.gql +35 -0
  116. package/dist/runtime/runtime/graphql/item/action.gql +22 -0
  117. package/dist/runtime/runtime/graphql/item/affiliations.gql +37 -0
  118. package/dist/runtime/runtime/graphql/item/apps.gql +34 -0
  119. package/dist/runtime/runtime/graphql/item/disciplines.gql +17 -0
  120. package/dist/runtime/runtime/graphql/item/events.gql +120 -0
  121. package/dist/runtime/runtime/graphql/item/fellowships.gql +164 -0
  122. package/dist/runtime/runtime/graphql/item/files.gql +25 -0
  123. package/dist/runtime/runtime/graphql/item/mailing.gql +10 -0
  124. package/dist/runtime/runtime/graphql/item/news.gql +129 -0
  125. package/dist/runtime/runtime/graphql/item/people.gql +174 -0
  126. package/dist/runtime/runtime/graphql/item/projects.gql +171 -0
  127. package/dist/runtime/runtime/graphql/item/publications.gql +169 -0
  128. package/dist/runtime/runtime/graphql/item/tags.gql +13 -0
  129. package/dist/runtime/runtime/graphql/item/users.gql +14 -0
  130. package/dist/runtime/runtime/graphql/list/action.gql +31 -0
  131. package/dist/runtime/runtime/graphql/list/affiliations.gql +42 -0
  132. package/dist/runtime/runtime/graphql/list/apps.gql +42 -0
  133. package/dist/runtime/runtime/graphql/list/disciplines.gql +22 -0
  134. package/dist/runtime/runtime/graphql/list/events.gql +44 -0
  135. package/dist/runtime/runtime/graphql/list/fellowships.gql +53 -0
  136. package/dist/runtime/runtime/graphql/list/files.gql +37 -0
  137. package/dist/runtime/runtime/graphql/list/mailing.gql +22 -0
  138. package/dist/runtime/runtime/graphql/list/news.gql +40 -0
  139. package/dist/runtime/runtime/graphql/list/people.gql +50 -0
  140. package/dist/runtime/runtime/graphql/list/projects.gql +37 -0
  141. package/dist/runtime/runtime/graphql/list/publications.gql +38 -0
  142. package/dist/runtime/runtime/graphql/list/search.gql +161 -0
  143. package/dist/runtime/runtime/graphql/list/tags.gql +22 -0
  144. package/dist/runtime/runtime/graphql/list/users.gql +38 -0
  145. package/dist/runtime/runtime/graphql/login.gql +0 -0
  146. package/dist/runtime/runtime/plugins/pinia.d.ts +2 -0
  147. package/dist/runtime/runtime/plugins/pinia.js +134 -0
  148. package/dist/runtime/runtime/plugins/vuetify.d.ts +2 -0
  149. package/dist/runtime/runtime/plugins/vuetify.js +21 -0
  150. package/dist/runtime/runtime/public/default.png +0 -0
  151. package/dist/runtime/runtime/public/filters.json +72 -0
  152. package/dist/runtime/runtime/server/tsconfig.json +3 -0
  153. package/dist/runtime/runtime/stores/factory.d.ts +25 -0
  154. package/dist/runtime/runtime/stores/factory.js +19 -0
  155. package/dist/runtime/runtime/stores/root.d.ts +60 -0
  156. package/dist/runtime/runtime/stores/root.js +315 -0
  157. package/dist/runtime/runtime/translations/en.json +350 -0
  158. package/dist/runtime/runtime/translations/fr.json +349 -0
  159. package/dist/runtime/runtime/types/imports.d.ts +13 -0
  160. package/dist/runtime/runtime/types/stores.d.ts +11 -0
  161. package/dist/runtime/translations/en.json +1 -1
  162. package/package.json +2 -2
  163. /package/dist/runtime/{components → runtime/components}/people/GroupBadges.vue +0 -0
@@ -0,0 +1,12 @@
1
+ export declare const formatDate: (dateStr: string, locale: string) => string;
2
+ export declare const getLocalizedDate: (dateIso: string) => string;
3
+ export declare const getDetailedFormatedDate: (dateStr: string, locale: string) => {
4
+ day: number;
5
+ month: string;
6
+ year: number;
7
+ hours: number;
8
+ minutes: number;
9
+ };
10
+ export declare const capitalize: (value: string, multiple?: boolean) => string;
11
+ export declare const slugify: (str: string) => string;
12
+ export declare const formatDateValue: (date: string | Date, locale: string) => string;
@@ -0,0 +1,48 @@
1
+ import { useNuxtApp } from "#imports";
2
+ export const formatDate = (dateStr, locale) => {
3
+ const date = new Date(dateStr);
4
+ return date.toLocaleDateString(locale, {
5
+ weekday: "long",
6
+ year: "numeric",
7
+ month: "long",
8
+ day: "numeric"
9
+ });
10
+ };
11
+ export const getLocalizedDate = (dateIso) => {
12
+ const { $i18n } = useNuxtApp();
13
+ return new Date(dateIso).toLocaleDateString(
14
+ $i18n.localeProperties.value.language,
15
+ {
16
+ weekday: "long",
17
+ year: "numeric",
18
+ month: "long",
19
+ day: "numeric"
20
+ }
21
+ );
22
+ };
23
+ export const getDetailedFormatedDate = (dateStr, locale) => {
24
+ const date = new Date(dateStr);
25
+ return {
26
+ day: date.getDate(),
27
+ month: date.toLocaleString(locale, { month: "long" }),
28
+ year: date.getFullYear(),
29
+ hours: date.getUTCHours(),
30
+ minutes: date.getMinutes()
31
+ };
32
+ };
33
+ export const capitalize = (value, multiple) => multiple ? value.replace(/(?:^|[\s'-])\S/g, (a) => a.toUpperCase()) : value && value.charAt(0).toUpperCase() + value.slice(1);
34
+ export const slugify = (str) => {
35
+ str = str.replace(/^\s+|\s+$/g, "").trim();
36
+ str = str.toLowerCase();
37
+ const from = "\xE0\xE1\xE4\xE2\xE8\xE9\xEB\xEA\xEC\xED\xEF\xEE\xF2\xF3\xF6\xF4\xF9\xFA\xFC\xFB\xF1\xE7\xB7/_,:;";
38
+ const to = "aaaaeeeeiiiioooouuuunc------";
39
+ for (let i = 0, l = from.length; i < l; i++) {
40
+ str = str.replace(new RegExp(from.charAt(i), "g"), to.charAt(i));
41
+ }
42
+ str = str.replace(/[^a-z0-9 -]/g, "").replace(/\s+/g, "-").replace(/-+/g, "-");
43
+ return str;
44
+ };
45
+ export const formatDateValue = (date, locale) => {
46
+ const formattedDate = new Date(date);
47
+ return formattedDate.toLocaleDateString(locale);
48
+ };
@@ -0,0 +1,35 @@
1
+ query buildFiltersValues {
2
+ buildFiltersValues {
3
+ events {
4
+ disciplines
5
+ fellowships
6
+ tags
7
+ category
8
+ }
9
+ fellowships {
10
+ affiliations
11
+ disciplines
12
+ tags
13
+ }
14
+ news {
15
+ category
16
+ tags
17
+ }
18
+ people {
19
+ disciplines
20
+ fellowships
21
+ members
22
+ vintage
23
+ }
24
+ projects {
25
+ tags
26
+ }
27
+ publications {
28
+ affiliations
29
+ disciplines
30
+ eventCategory
31
+ tags
32
+ type
33
+ }
34
+ }
35
+ }
@@ -0,0 +1,22 @@
1
+ query getAction($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
2
+ getAction(appId: $appId, itemId: $itemId, lang: $lang) {
3
+ color
4
+ image {
5
+ alt
6
+ backgroundColor
7
+ caption
8
+ copyright
9
+ license
10
+ licenseUrl
11
+ url
12
+ }
13
+ link
14
+ name
15
+ slots
16
+ video
17
+ slug {
18
+ fr
19
+ en
20
+ }
21
+ }
22
+ }
@@ -0,0 +1,37 @@
1
+ query getAffiliation(
2
+ $appId: ID = "iea"
3
+ $itemId: ID = ""
4
+ $lang: String = "en"
5
+ ) {
6
+ getAffiliation(appId: $appId, itemId: $itemId, lang: $lang) {
7
+ image {
8
+ alt
9
+ backgroundColor
10
+ caption
11
+ copyright
12
+ license
13
+ licenseUrl
14
+ url
15
+ }
16
+ location {
17
+ alt
18
+ city
19
+ country
20
+ details
21
+ geocode {
22
+ lat
23
+ lng
24
+ }
25
+ name
26
+ street
27
+ zip
28
+ }
29
+ name
30
+ ror
31
+ url
32
+ slug {
33
+ fr
34
+ en
35
+ }
36
+ }
37
+ }
@@ -0,0 +1,34 @@
1
+ query getApp($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
2
+ getApp(appId: $appId, itemId: $itemId, lang: $lang) {
3
+ appId
4
+ color
5
+ date
6
+ description
7
+ logo {
8
+ alt
9
+ backgroundColor
10
+ caption
11
+ copyright
12
+ license
13
+ licenseUrl
14
+ url
15
+ }
16
+ name
17
+ state
18
+ subtitle
19
+ summary
20
+ tags {
21
+ createdAt
22
+ description
23
+ icon
24
+ name
25
+ updatedAt
26
+ slug {
27
+ en
28
+ fr
29
+ }
30
+ }
31
+ url
32
+ slug
33
+ }
34
+ }
@@ -0,0 +1,17 @@
1
+ query getDiscipline(
2
+ $appId: ID = "iea"
3
+ $itemId: ID = ""
4
+ $lang: String = "en"
5
+ ) {
6
+ getDiscipline(appId: $appId, itemId: $itemId, lang: $lang) {
7
+ createdAt
8
+ description
9
+ icon
10
+ name
11
+ updatedAt
12
+ slug {
13
+ fr
14
+ en
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,120 @@
1
+ query getEvent($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
2
+ getEvent(appId: $appId, itemId: $itemId, lang: $lang) {
3
+ appId
4
+ availableSlots
5
+ bookingState
6
+ category
7
+ createdBy
8
+ dateText
9
+ description
10
+ details
11
+ id
12
+ image {
13
+ alt
14
+ caption
15
+ backgroundColor
16
+ copyright
17
+ license
18
+ licenseUrl
19
+ url
20
+ }
21
+ name
22
+ place {
23
+ address
24
+ id
25
+ name
26
+ url
27
+ }
28
+ start
29
+ slug {
30
+ fr
31
+ en
32
+ }
33
+ slots {
34
+ email
35
+ firstname
36
+ institution
37
+ lang
38
+ lastname
39
+ }
40
+ state
41
+ stop
42
+ subtitle
43
+ summary
44
+ program
45
+ totalSlots
46
+ eventType
47
+ outside
48
+ url
49
+ related {
50
+ events {
51
+ description
52
+ slug
53
+ image {
54
+ alt
55
+ backgroundColor
56
+ caption
57
+ copyright
58
+ license
59
+ licenseUrl
60
+ url
61
+ }
62
+ name
63
+ url
64
+ }
65
+ news {
66
+ description
67
+ id
68
+ slug
69
+ image {
70
+ alt
71
+ backgroundColor
72
+ caption
73
+ copyright
74
+ license
75
+ licenseUrl
76
+ url
77
+ }
78
+ name
79
+ url
80
+ }
81
+ people {
82
+ firstname
83
+ id
84
+ slug
85
+ image {
86
+ alt
87
+ backgroundColor
88
+ caption
89
+ license
90
+ copyright
91
+ licenseUrl
92
+ url
93
+ }
94
+ lastname
95
+ }
96
+ projects {
97
+ description
98
+ id
99
+ slug
100
+ image {
101
+ alt
102
+ backgroundColor
103
+ caption
104
+ copyright
105
+ license
106
+ licenseUrl
107
+ url
108
+ }
109
+ name
110
+ url
111
+ }
112
+ publications {
113
+ id
114
+ slug
115
+ name
116
+ url
117
+ }
118
+ }
119
+ }
120
+ }
@@ -0,0 +1,164 @@
1
+ query getFellowship(
2
+ $appId: ID = "iea"
3
+ $itemId: ID = ""
4
+ $lang: String = "en"
5
+ ) {
6
+ getFellowship(appId: $appId, itemId: $itemId, lang: $lang) {
7
+ id
8
+ action
9
+ applicationStart
10
+ fellowshipStart
11
+ contact
12
+ url
13
+ slug {
14
+ fr
15
+ en
16
+ }
17
+ applicationStop
18
+ fellowshipStop
19
+ publicationDate
20
+ summary
21
+ description
22
+ fellows {
23
+ id
24
+ firstname
25
+ lastname
26
+ image {
27
+ alt
28
+ caption
29
+ backgroundColor
30
+ copyright
31
+ license
32
+ licenseUrl
33
+ url
34
+ }
35
+ }
36
+ fellowshipType
37
+ files {
38
+ createdAt
39
+ file
40
+ fileType
41
+ hash
42
+ id
43
+ image {
44
+ alt
45
+ caption
46
+ backgroundColor
47
+ copyright
48
+ license
49
+ licenseUrl
50
+ url
51
+ }
52
+ name
53
+ path
54
+ size
55
+ thumb
56
+ updatedAt
57
+ url
58
+ }
59
+ gallery {
60
+ alt
61
+ backgroundColor
62
+ caption
63
+ license
64
+ copyright
65
+ licenseUrl
66
+ url
67
+ }
68
+ image {
69
+ url
70
+ licenseUrl
71
+ license
72
+ copyright
73
+ caption
74
+ backgroundColor
75
+ alt
76
+ }
77
+ member {
78
+ name
79
+ ror
80
+ url
81
+ image {
82
+ alt
83
+ backgroundColor
84
+ caption
85
+ copyright
86
+ license
87
+ licenseUrl
88
+ url
89
+ }
90
+ location {
91
+ alt
92
+ city
93
+ country
94
+ details
95
+ geocode {
96
+ lat
97
+ lng
98
+ }
99
+ name
100
+ street
101
+ zip
102
+ }
103
+ }
104
+ name
105
+ video {
106
+ alt
107
+ backgroundColor
108
+ caption
109
+ copyright
110
+ license
111
+ licenseUrl
112
+ url
113
+ }
114
+ disciplines {
115
+ description
116
+ createdAt
117
+ icon
118
+ name
119
+ updatedAt
120
+ }
121
+ appId
122
+ affiliations {
123
+ image {
124
+ alt
125
+ backgroundColor
126
+ caption
127
+ copyright
128
+ license
129
+ licenseUrl
130
+ url
131
+ }
132
+ location {
133
+ alt
134
+ city
135
+ country
136
+ details
137
+ geocode {
138
+ lat
139
+ lng
140
+ }
141
+ name
142
+ street
143
+ zip
144
+ }
145
+ name
146
+ ror
147
+ url
148
+ }
149
+ fellowshipDetails {
150
+ applicationMaterials
151
+ funding
152
+ fundingPeriod
153
+ housing
154
+ location
155
+ meals
156
+ profile
157
+ researchSupport
158
+ selectionProcess
159
+ tasks
160
+ type
161
+ }
162
+ status
163
+ }
164
+ }
@@ -0,0 +1,25 @@
1
+ query getFile($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
2
+ getFile(appId: $appId, itemId: $itemId, lang: $lang) {
3
+ createdAt
4
+ file
5
+ fileType
6
+ hash
7
+ id
8
+ image {
9
+ alt
10
+ backgroundColor
11
+ caption
12
+ copyright
13
+ license
14
+ licenseUrl
15
+ url
16
+ }
17
+ name
18
+ path
19
+ size
20
+ thumb
21
+ updatedAt
22
+ url
23
+ slug
24
+ }
25
+ }
@@ -0,0 +1,10 @@
1
+ query getMailing($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
2
+ getMailing(appId: $appId, itemId: $itemId, lang: $lang) {
3
+ createdAt
4
+ date
5
+ description
6
+ name
7
+ updatedAt
8
+ slug
9
+ }
10
+ }
@@ -0,0 +1,129 @@
1
+ query getNews($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
2
+ getNews(appId: $appId, itemId: $itemId, lang: $lang) {
3
+ category
4
+ color
5
+ date
6
+ description
7
+ featured
8
+ slug {
9
+ fr
10
+ en
11
+ }
12
+ files {
13
+ createdAt
14
+ file
15
+ fileType
16
+ hash
17
+ id
18
+ image {
19
+ alt
20
+ caption
21
+ backgroundColor
22
+ copyright
23
+ license
24
+ licenseUrl
25
+ url
26
+ }
27
+ name
28
+ path
29
+ size
30
+ thumb
31
+ updatedAt
32
+ url
33
+ }
34
+ gallery {
35
+ alt
36
+ backgroundColor
37
+ caption
38
+ copyright
39
+ license
40
+ licenseUrl
41
+ url
42
+ }
43
+ image {
44
+ alt
45
+ backgroundColor
46
+ caption
47
+ copyright
48
+ license
49
+ licenseUrl
50
+ url
51
+ }
52
+ tags {
53
+ createdAt
54
+ description
55
+ icon
56
+ name
57
+ updatedAt
58
+ }
59
+ name
60
+ url
61
+ appId
62
+ id
63
+ related {
64
+ events {
65
+ description
66
+ image {
67
+ alt
68
+ backgroundColor
69
+ caption
70
+ copyright
71
+ license
72
+ licenseUrl
73
+ url
74
+ }
75
+ name
76
+ url
77
+ }
78
+ news {
79
+ description
80
+ id
81
+ image {
82
+ alt
83
+ backgroundColor
84
+ caption
85
+ copyright
86
+ license
87
+ licenseUrl
88
+ url
89
+ }
90
+ name
91
+ url
92
+ }
93
+ people {
94
+ firstname
95
+ id
96
+ image {
97
+ alt
98
+ backgroundColor
99
+ caption
100
+ copyright
101
+ license
102
+ licenseUrl
103
+ url
104
+ }
105
+ lastname
106
+ }
107
+ projects {
108
+ description
109
+ id
110
+ name
111
+ image {
112
+ alt
113
+ backgroundColor
114
+ caption
115
+ copyright
116
+ license
117
+ licenseUrl
118
+ url
119
+ }
120
+ url
121
+ }
122
+ publications {
123
+ id
124
+ name
125
+ url
126
+ }
127
+ }
128
+ }
129
+ }