@paris-ias/list 1.0.112 → 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.
- package/dist/module.json +1 -1
- package/dist/runtime/components/list/molecules/Pagination.vue +2 -0
- package/dist/runtime/components/list/organisms/List.vue +11 -1
- package/dist/runtime/runtime/components/actions/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/actions/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/actions/View.vue +20 -0
- package/dist/runtime/runtime/components/affiliations/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/affiliations/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/affiliations/View.vue +20 -0
- package/dist/runtime/runtime/components/apps/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/apps/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/apps/View.vue +20 -0
- package/dist/runtime/runtime/components/disciplines/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/disciplines/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/disciplines/View.vue +20 -0
- package/dist/runtime/runtime/components/events/Badges.vue +73 -0
- package/dist/runtime/runtime/components/events/DateTimePlace.vue +77 -0
- package/dist/runtime/runtime/components/events/DenseItem.vue +60 -0
- package/dist/runtime/runtime/components/events/ExpandedItem.vue +9 -0
- package/dist/runtime/runtime/components/events/RegisterModal.vue +50 -0
- package/dist/runtime/runtime/components/events/RelatedItem.vue +44 -0
- package/dist/runtime/runtime/components/events/RowsItem.vue +118 -0
- package/dist/runtime/runtime/components/events/SlidingItem.vue +63 -0
- package/dist/runtime/runtime/components/events/View.vue +333 -0
- package/dist/runtime/runtime/components/fellowships/Badges.vue +47 -0
- package/dist/runtime/runtime/components/fellowships/DenseItem.vue +42 -0
- package/dist/runtime/runtime/components/fellowships/ExpandedItem.vue +7 -0
- package/dist/runtime/runtime/components/fellowships/RegisterModal.vue +41 -0
- package/dist/runtime/runtime/components/fellowships/RowsItem.vue +58 -0
- package/dist/runtime/runtime/components/fellowships/View.vue +203 -0
- package/dist/runtime/runtime/components/files/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/files/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/files/View.vue +20 -0
- package/dist/runtime/runtime/components/list/atoms/FiltersMenu.vue +44 -0
- package/dist/runtime/runtime/components/list/atoms/ResetButton.vue +33 -0
- package/dist/runtime/runtime/components/list/atoms/ResultsList.vue +27 -0
- package/dist/runtime/runtime/components/list/atoms/SearchInput.vue +59 -0
- package/dist/runtime/runtime/components/list/atoms/SearchItem.vue +65 -0
- package/dist/runtime/runtime/components/list/atoms/SearchString.vue +160 -0
- package/dist/runtime/runtime/components/list/atoms/SortMenu.vue +80 -0
- package/dist/runtime/runtime/components/list/atoms/ViewMenu.vue +63 -0
- package/dist/runtime/runtime/components/list/atoms/itemsPerPage.vue +33 -0
- package/dist/runtime/runtime/components/list/inputs/AutoComplete.vue +24 -0
- package/dist/runtime/runtime/components/list/inputs/BooleanSwitch.vue +20 -0
- package/dist/runtime/runtime/components/list/inputs/Checkbox.vue +20 -0
- package/dist/runtime/runtime/components/list/inputs/Select.vue +28 -0
- package/dist/runtime/runtime/components/list/molecules/Filters.vue +98 -0
- package/dist/runtime/runtime/components/list/molecules/GlobalSearchInput.vue +131 -0
- package/dist/runtime/runtime/components/list/molecules/Header.vue +51 -0
- package/dist/runtime/runtime/components/list/molecules/Pagination.vue +194 -0
- package/dist/runtime/runtime/components/list/molecules/ResultsContainer.vue +78 -0
- package/dist/runtime/runtime/components/list/organisms/List.vue +110 -0
- package/dist/runtime/runtime/components/list/organisms/Results.vue +72 -0
- package/dist/runtime/runtime/components/list/organisms/Slider.vue +180 -0
- package/dist/runtime/runtime/components/list/views/Dense.vue +12 -0
- package/dist/runtime/runtime/components/list/views/Expanded.vue +10 -0
- package/dist/runtime/runtime/components/list/views/Grid.vue +13 -0
- package/dist/runtime/runtime/components/list/views/Rows.vue +12 -0
- package/dist/runtime/runtime/components/list/views/Slider.vue +147 -0
- package/dist/runtime/runtime/components/list/views/Table.vue +13 -0
- package/dist/runtime/runtime/components/mailing/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/mailing/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/mailing/View.vue +20 -0
- package/dist/runtime/runtime/components/misc/atoms/DateStamp.vue +101 -0
- package/dist/runtime/runtime/components/misc/atoms/ImageContainer.vue +127 -0
- package/dist/runtime/runtime/components/misc/atoms/ShareMenu.vue +61 -0
- package/dist/runtime/runtime/components/misc/atoms/Socials.vue +120 -0
- package/dist/runtime/runtime/components/misc/molecules/ChipContainer.vue +31 -0
- package/dist/runtime/runtime/components/misc/molecules/Related.vue +28 -0
- package/dist/runtime/runtime/components/misc/molecules/RelatedItems.vue +27 -0
- package/dist/runtime/runtime/components/misc/molecules/SearchItem.vue +26 -0
- package/dist/runtime/runtime/components/news/DenseItem.vue +73 -0
- package/dist/runtime/runtime/components/news/ExpandedItem.vue +145 -0
- package/dist/runtime/runtime/components/news/Header.vue +7 -0
- package/dist/runtime/runtime/components/news/RelatedItem.vue +44 -0
- package/dist/runtime/runtime/components/news/RowsItem.vue +182 -0
- package/dist/runtime/runtime/components/news/View.vue +174 -0
- package/dist/runtime/runtime/components/people/DenseItem.vue +60 -0
- package/dist/runtime/runtime/components/people/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/people/GroupBadges.vue +54 -0
- package/dist/runtime/runtime/components/people/RelatedItem.vue +41 -0
- package/dist/runtime/runtime/components/people/RowsItem.vue +93 -0
- package/dist/runtime/runtime/components/people/View.vue +172 -0
- package/dist/runtime/runtime/components/projects/DenseItem.vue +77 -0
- package/dist/runtime/runtime/components/projects/ExpandedItem.vue +12 -0
- package/dist/runtime/runtime/components/projects/RelatedItem.vue +44 -0
- package/dist/runtime/runtime/components/projects/RowsItem.vue +103 -0
- package/dist/runtime/runtime/components/projects/View.vue +130 -0
- package/dist/runtime/runtime/components/publications/DenseItem.vue +89 -0
- package/dist/runtime/runtime/components/publications/RelatedItem.vue +44 -0
- package/dist/runtime/runtime/components/publications/RowsItem.vue +105 -0
- package/dist/runtime/runtime/components/publications/View.vue +132 -0
- package/dist/runtime/runtime/components/tags/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/tags/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/tags/View.vue +20 -0
- package/dist/runtime/runtime/components/users/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/users/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/users/View.vue +20 -0
- package/dist/runtime/runtime/composables/useFetchItem.d.ts +6 -0
- package/dist/runtime/runtime/composables/useFetchItem.js +49 -0
- package/dist/runtime/runtime/composables/useIcons.d.ts +1 -0
- package/dist/runtime/runtime/composables/useIcons.js +30 -0
- package/dist/runtime/runtime/composables/useUtils.d.ts +12 -0
- package/dist/runtime/runtime/composables/useUtils.js +48 -0
- package/dist/runtime/runtime/graphql/buildFiltersValues.gql +35 -0
- package/dist/runtime/runtime/graphql/item/action.gql +22 -0
- package/dist/runtime/runtime/graphql/item/affiliations.gql +37 -0
- package/dist/runtime/runtime/graphql/item/apps.gql +34 -0
- package/dist/runtime/runtime/graphql/item/disciplines.gql +17 -0
- package/dist/runtime/runtime/graphql/item/events.gql +120 -0
- package/dist/runtime/runtime/graphql/item/fellowships.gql +164 -0
- package/dist/runtime/runtime/graphql/item/files.gql +25 -0
- package/dist/runtime/runtime/graphql/item/mailing.gql +10 -0
- package/dist/runtime/runtime/graphql/item/news.gql +129 -0
- package/dist/runtime/runtime/graphql/item/people.gql +174 -0
- package/dist/runtime/runtime/graphql/item/projects.gql +171 -0
- package/dist/runtime/runtime/graphql/item/publications.gql +169 -0
- package/dist/runtime/runtime/graphql/item/tags.gql +13 -0
- package/dist/runtime/runtime/graphql/item/users.gql +14 -0
- package/dist/runtime/runtime/graphql/list/action.gql +31 -0
- package/dist/runtime/runtime/graphql/list/affiliations.gql +42 -0
- package/dist/runtime/runtime/graphql/list/apps.gql +42 -0
- package/dist/runtime/runtime/graphql/list/disciplines.gql +22 -0
- package/dist/runtime/runtime/graphql/list/events.gql +44 -0
- package/dist/runtime/runtime/graphql/list/fellowships.gql +53 -0
- package/dist/runtime/runtime/graphql/list/files.gql +37 -0
- package/dist/runtime/runtime/graphql/list/mailing.gql +22 -0
- package/dist/runtime/runtime/graphql/list/news.gql +40 -0
- package/dist/runtime/runtime/graphql/list/people.gql +50 -0
- package/dist/runtime/runtime/graphql/list/projects.gql +37 -0
- package/dist/runtime/runtime/graphql/list/publications.gql +38 -0
- package/dist/runtime/runtime/graphql/list/search.gql +161 -0
- package/dist/runtime/runtime/graphql/list/tags.gql +22 -0
- package/dist/runtime/runtime/graphql/list/users.gql +38 -0
- package/dist/runtime/runtime/graphql/login.gql +0 -0
- package/dist/runtime/runtime/plugins/pinia.d.ts +2 -0
- package/dist/runtime/runtime/plugins/pinia.js +134 -0
- package/dist/runtime/runtime/plugins/vuetify.d.ts +2 -0
- package/dist/runtime/runtime/plugins/vuetify.js +21 -0
- package/dist/runtime/runtime/public/default.png +0 -0
- package/dist/runtime/runtime/public/filters.json +72 -0
- package/dist/runtime/runtime/server/tsconfig.json +3 -0
- package/dist/runtime/runtime/stores/factory.d.ts +25 -0
- package/dist/runtime/runtime/stores/factory.js +19 -0
- package/dist/runtime/runtime/stores/root.d.ts +60 -0
- package/dist/runtime/runtime/stores/root.js +315 -0
- package/dist/runtime/runtime/translations/en.json +350 -0
- package/dist/runtime/runtime/translations/fr.json +349 -0
- package/dist/runtime/runtime/types/imports.d.ts +13 -0
- package/dist/runtime/runtime/types/stores.d.ts +11 -0
- package/package.json +1 -1
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
query getPeople($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
2
|
+
getPeople(appId: $appId, itemId: $itemId, lang: $lang) {
|
|
3
|
+
affiliations {
|
|
4
|
+
affiliation {
|
|
5
|
+
image {
|
|
6
|
+
alt
|
|
7
|
+
backgroundColor
|
|
8
|
+
caption
|
|
9
|
+
copyright
|
|
10
|
+
license
|
|
11
|
+
licenseUrl
|
|
12
|
+
url
|
|
13
|
+
}
|
|
14
|
+
location {
|
|
15
|
+
alt
|
|
16
|
+
city
|
|
17
|
+
country
|
|
18
|
+
details
|
|
19
|
+
geocode {
|
|
20
|
+
lat
|
|
21
|
+
lng
|
|
22
|
+
}
|
|
23
|
+
name
|
|
24
|
+
street
|
|
25
|
+
zip
|
|
26
|
+
}
|
|
27
|
+
name
|
|
28
|
+
ror
|
|
29
|
+
url
|
|
30
|
+
}
|
|
31
|
+
positions {
|
|
32
|
+
department
|
|
33
|
+
role
|
|
34
|
+
start
|
|
35
|
+
stop
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
biography
|
|
39
|
+
firstname
|
|
40
|
+
groups {
|
|
41
|
+
board
|
|
42
|
+
fellows
|
|
43
|
+
sab
|
|
44
|
+
sponsor
|
|
45
|
+
team
|
|
46
|
+
vintage {
|
|
47
|
+
name
|
|
48
|
+
theme
|
|
49
|
+
url
|
|
50
|
+
year
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
image {
|
|
54
|
+
url
|
|
55
|
+
license
|
|
56
|
+
copyright
|
|
57
|
+
caption
|
|
58
|
+
backgroundColor
|
|
59
|
+
alt
|
|
60
|
+
licenseUrl
|
|
61
|
+
}
|
|
62
|
+
lastname
|
|
63
|
+
socials {
|
|
64
|
+
idRef
|
|
65
|
+
instagram
|
|
66
|
+
linkedin
|
|
67
|
+
mendeley
|
|
68
|
+
orcid
|
|
69
|
+
researchgate
|
|
70
|
+
scholar
|
|
71
|
+
twitter
|
|
72
|
+
website
|
|
73
|
+
wikipedia
|
|
74
|
+
}
|
|
75
|
+
video {
|
|
76
|
+
url
|
|
77
|
+
alt
|
|
78
|
+
caption
|
|
79
|
+
copyright
|
|
80
|
+
license
|
|
81
|
+
licenseUrl
|
|
82
|
+
backgroundColor
|
|
83
|
+
}
|
|
84
|
+
slug
|
|
85
|
+
appId
|
|
86
|
+
consent {
|
|
87
|
+
data
|
|
88
|
+
diffusion
|
|
89
|
+
email
|
|
90
|
+
fellowshipnewsletter
|
|
91
|
+
newsletter
|
|
92
|
+
publication
|
|
93
|
+
record
|
|
94
|
+
}
|
|
95
|
+
disciplines {
|
|
96
|
+
createdAt
|
|
97
|
+
description
|
|
98
|
+
icon
|
|
99
|
+
name
|
|
100
|
+
updatedAt
|
|
101
|
+
}
|
|
102
|
+
id
|
|
103
|
+
related {
|
|
104
|
+
events {
|
|
105
|
+
description
|
|
106
|
+
image {
|
|
107
|
+
alt
|
|
108
|
+
backgroundColor
|
|
109
|
+
caption
|
|
110
|
+
copyright
|
|
111
|
+
license
|
|
112
|
+
licenseUrl
|
|
113
|
+
url
|
|
114
|
+
}
|
|
115
|
+
name
|
|
116
|
+
url
|
|
117
|
+
slug
|
|
118
|
+
}
|
|
119
|
+
news {
|
|
120
|
+
description
|
|
121
|
+
slug
|
|
122
|
+
id
|
|
123
|
+
image {
|
|
124
|
+
alt
|
|
125
|
+
backgroundColor
|
|
126
|
+
caption
|
|
127
|
+
copyright
|
|
128
|
+
license
|
|
129
|
+
licenseUrl
|
|
130
|
+
url
|
|
131
|
+
}
|
|
132
|
+
name
|
|
133
|
+
url
|
|
134
|
+
}
|
|
135
|
+
people {
|
|
136
|
+
firstname
|
|
137
|
+
slug
|
|
138
|
+
id
|
|
139
|
+
image {
|
|
140
|
+
alt
|
|
141
|
+
backgroundColor
|
|
142
|
+
caption
|
|
143
|
+
copyright
|
|
144
|
+
license
|
|
145
|
+
licenseUrl
|
|
146
|
+
url
|
|
147
|
+
}
|
|
148
|
+
lastname
|
|
149
|
+
}
|
|
150
|
+
projects {
|
|
151
|
+
description
|
|
152
|
+
slug
|
|
153
|
+
id
|
|
154
|
+
image {
|
|
155
|
+
alt
|
|
156
|
+
backgroundColor
|
|
157
|
+
caption
|
|
158
|
+
copyright
|
|
159
|
+
license
|
|
160
|
+
licenseUrl
|
|
161
|
+
url
|
|
162
|
+
}
|
|
163
|
+
name
|
|
164
|
+
url
|
|
165
|
+
}
|
|
166
|
+
publications {
|
|
167
|
+
id
|
|
168
|
+
slug
|
|
169
|
+
name
|
|
170
|
+
url
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
}
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
query getProject($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
2
|
+
getProject(appId: $appId, itemId: $itemId, lang: $lang) {
|
|
3
|
+
color
|
|
4
|
+
date
|
|
5
|
+
description
|
|
6
|
+
featured
|
|
7
|
+
slug {
|
|
8
|
+
fr
|
|
9
|
+
en
|
|
10
|
+
}
|
|
11
|
+
files {
|
|
12
|
+
file
|
|
13
|
+
createdAt
|
|
14
|
+
fileType
|
|
15
|
+
hash
|
|
16
|
+
id
|
|
17
|
+
image {
|
|
18
|
+
alt
|
|
19
|
+
backgroundColor
|
|
20
|
+
copyright
|
|
21
|
+
caption
|
|
22
|
+
license
|
|
23
|
+
licenseUrl
|
|
24
|
+
url
|
|
25
|
+
}
|
|
26
|
+
path
|
|
27
|
+
size
|
|
28
|
+
name
|
|
29
|
+
thumb
|
|
30
|
+
updatedAt
|
|
31
|
+
url
|
|
32
|
+
}
|
|
33
|
+
subtitle
|
|
34
|
+
name
|
|
35
|
+
url
|
|
36
|
+
video {
|
|
37
|
+
alt
|
|
38
|
+
backgroundColor
|
|
39
|
+
caption
|
|
40
|
+
copyright
|
|
41
|
+
licenseUrl
|
|
42
|
+
license
|
|
43
|
+
url
|
|
44
|
+
}
|
|
45
|
+
affiliations {
|
|
46
|
+
name
|
|
47
|
+
ror
|
|
48
|
+
url
|
|
49
|
+
location {
|
|
50
|
+
alt
|
|
51
|
+
city
|
|
52
|
+
country
|
|
53
|
+
details
|
|
54
|
+
name
|
|
55
|
+
street
|
|
56
|
+
zip
|
|
57
|
+
geocode {
|
|
58
|
+
lat
|
|
59
|
+
lng
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
image {
|
|
63
|
+
alt
|
|
64
|
+
backgroundColor
|
|
65
|
+
caption
|
|
66
|
+
copyright
|
|
67
|
+
license
|
|
68
|
+
licenseUrl
|
|
69
|
+
url
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
gallery {
|
|
73
|
+
alt
|
|
74
|
+
backgroundColor
|
|
75
|
+
caption
|
|
76
|
+
copyright
|
|
77
|
+
license
|
|
78
|
+
licenseUrl
|
|
79
|
+
url
|
|
80
|
+
}
|
|
81
|
+
image {
|
|
82
|
+
alt
|
|
83
|
+
backgroundColor
|
|
84
|
+
caption
|
|
85
|
+
copyright
|
|
86
|
+
license
|
|
87
|
+
licenseUrl
|
|
88
|
+
url
|
|
89
|
+
}
|
|
90
|
+
tags {
|
|
91
|
+
createdAt
|
|
92
|
+
description
|
|
93
|
+
icon
|
|
94
|
+
name
|
|
95
|
+
updatedAt
|
|
96
|
+
}
|
|
97
|
+
appId
|
|
98
|
+
id
|
|
99
|
+
status
|
|
100
|
+
related {
|
|
101
|
+
events {
|
|
102
|
+
description
|
|
103
|
+
image {
|
|
104
|
+
alt
|
|
105
|
+
backgroundColor
|
|
106
|
+
caption
|
|
107
|
+
copyright
|
|
108
|
+
licenseUrl
|
|
109
|
+
license
|
|
110
|
+
url
|
|
111
|
+
}
|
|
112
|
+
name
|
|
113
|
+
url
|
|
114
|
+
slug
|
|
115
|
+
}
|
|
116
|
+
news {
|
|
117
|
+
description
|
|
118
|
+
id
|
|
119
|
+
image {
|
|
120
|
+
alt
|
|
121
|
+
backgroundColor
|
|
122
|
+
caption
|
|
123
|
+
copyright
|
|
124
|
+
license
|
|
125
|
+
licenseUrl
|
|
126
|
+
url
|
|
127
|
+
}
|
|
128
|
+
name
|
|
129
|
+
url
|
|
130
|
+
slug
|
|
131
|
+
}
|
|
132
|
+
people {
|
|
133
|
+
firstname
|
|
134
|
+
id
|
|
135
|
+
image {
|
|
136
|
+
alt
|
|
137
|
+
backgroundColor
|
|
138
|
+
caption
|
|
139
|
+
copyright
|
|
140
|
+
license
|
|
141
|
+
licenseUrl
|
|
142
|
+
url
|
|
143
|
+
}
|
|
144
|
+
lastname
|
|
145
|
+
slug
|
|
146
|
+
}
|
|
147
|
+
projects {
|
|
148
|
+
description
|
|
149
|
+
id
|
|
150
|
+
image {
|
|
151
|
+
alt
|
|
152
|
+
backgroundColor
|
|
153
|
+
caption
|
|
154
|
+
copyright
|
|
155
|
+
license
|
|
156
|
+
licenseUrl
|
|
157
|
+
url
|
|
158
|
+
}
|
|
159
|
+
name
|
|
160
|
+
url
|
|
161
|
+
slug
|
|
162
|
+
}
|
|
163
|
+
publications {
|
|
164
|
+
id
|
|
165
|
+
name
|
|
166
|
+
url
|
|
167
|
+
slug
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
}
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
query getPublication(
|
|
2
|
+
$appId: ID = "iea"
|
|
3
|
+
$itemId: ID = ""
|
|
4
|
+
$lang: String = "en"
|
|
5
|
+
) {
|
|
6
|
+
getPublication(appId: $appId, itemId: $itemId, lang: $lang) {
|
|
7
|
+
affiliations {
|
|
8
|
+
image {
|
|
9
|
+
alt
|
|
10
|
+
backgroundColor
|
|
11
|
+
caption
|
|
12
|
+
copyright
|
|
13
|
+
license
|
|
14
|
+
licenseUrl
|
|
15
|
+
url
|
|
16
|
+
}
|
|
17
|
+
location {
|
|
18
|
+
alt
|
|
19
|
+
city
|
|
20
|
+
country
|
|
21
|
+
details
|
|
22
|
+
geocode {
|
|
23
|
+
lat
|
|
24
|
+
lng
|
|
25
|
+
}
|
|
26
|
+
name
|
|
27
|
+
street
|
|
28
|
+
zip
|
|
29
|
+
}
|
|
30
|
+
name
|
|
31
|
+
ror
|
|
32
|
+
url
|
|
33
|
+
}
|
|
34
|
+
color
|
|
35
|
+
date
|
|
36
|
+
description
|
|
37
|
+
files {
|
|
38
|
+
createdAt
|
|
39
|
+
file
|
|
40
|
+
fileType
|
|
41
|
+
hash
|
|
42
|
+
id
|
|
43
|
+
image {
|
|
44
|
+
alt
|
|
45
|
+
backgroundColor
|
|
46
|
+
caption
|
|
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
|
+
backgroundColor
|
|
61
|
+
alt
|
|
62
|
+
caption
|
|
63
|
+
copyright
|
|
64
|
+
license
|
|
65
|
+
licenseUrl
|
|
66
|
+
url
|
|
67
|
+
}
|
|
68
|
+
id
|
|
69
|
+
image {
|
|
70
|
+
alt
|
|
71
|
+
backgroundColor
|
|
72
|
+
caption
|
|
73
|
+
copyright
|
|
74
|
+
license
|
|
75
|
+
licenseUrl
|
|
76
|
+
url
|
|
77
|
+
}
|
|
78
|
+
subtitle
|
|
79
|
+
tags {
|
|
80
|
+
createdAt
|
|
81
|
+
description
|
|
82
|
+
icon
|
|
83
|
+
name
|
|
84
|
+
updatedAt
|
|
85
|
+
}
|
|
86
|
+
name
|
|
87
|
+
url
|
|
88
|
+
video {
|
|
89
|
+
alt
|
|
90
|
+
backgroundColor
|
|
91
|
+
caption
|
|
92
|
+
copyright
|
|
93
|
+
license
|
|
94
|
+
licenseUrl
|
|
95
|
+
url
|
|
96
|
+
}
|
|
97
|
+
appId
|
|
98
|
+
type
|
|
99
|
+
related {
|
|
100
|
+
events {
|
|
101
|
+
description
|
|
102
|
+
image {
|
|
103
|
+
alt
|
|
104
|
+
backgroundColor
|
|
105
|
+
caption
|
|
106
|
+
copyright
|
|
107
|
+
license
|
|
108
|
+
licenseUrl
|
|
109
|
+
url
|
|
110
|
+
}
|
|
111
|
+
name
|
|
112
|
+
url
|
|
113
|
+
}
|
|
114
|
+
news {
|
|
115
|
+
description
|
|
116
|
+
id
|
|
117
|
+
image {
|
|
118
|
+
alt
|
|
119
|
+
backgroundColor
|
|
120
|
+
caption
|
|
121
|
+
copyright
|
|
122
|
+
license
|
|
123
|
+
licenseUrl
|
|
124
|
+
url
|
|
125
|
+
}
|
|
126
|
+
name
|
|
127
|
+
url
|
|
128
|
+
}
|
|
129
|
+
people {
|
|
130
|
+
firstname
|
|
131
|
+
id
|
|
132
|
+
image {
|
|
133
|
+
alt
|
|
134
|
+
backgroundColor
|
|
135
|
+
caption
|
|
136
|
+
copyright
|
|
137
|
+
license
|
|
138
|
+
licenseUrl
|
|
139
|
+
url
|
|
140
|
+
}
|
|
141
|
+
lastname
|
|
142
|
+
}
|
|
143
|
+
projects {
|
|
144
|
+
description
|
|
145
|
+
id
|
|
146
|
+
image {
|
|
147
|
+
alt
|
|
148
|
+
backgroundColor
|
|
149
|
+
caption
|
|
150
|
+
copyright
|
|
151
|
+
license
|
|
152
|
+
licenseUrl
|
|
153
|
+
url
|
|
154
|
+
}
|
|
155
|
+
name
|
|
156
|
+
url
|
|
157
|
+
}
|
|
158
|
+
publications {
|
|
159
|
+
id
|
|
160
|
+
name
|
|
161
|
+
url
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
slug {
|
|
165
|
+
fr
|
|
166
|
+
en
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
query listActions(
|
|
2
|
+
$options: ListInput = {
|
|
3
|
+
skip: 0
|
|
4
|
+
limit: 9
|
|
5
|
+
sortBy: ["start"]
|
|
6
|
+
sortDesc: false
|
|
7
|
+
filters: "{}"
|
|
8
|
+
}
|
|
9
|
+
$appId: ID = "iea"
|
|
10
|
+
$lang: String = "en"
|
|
11
|
+
) {
|
|
12
|
+
listActions(options: $options, appId: $appId, lang: $lang) {
|
|
13
|
+
items {
|
|
14
|
+
color
|
|
15
|
+
image {
|
|
16
|
+
alt
|
|
17
|
+
backgroundColor
|
|
18
|
+
caption
|
|
19
|
+
copyright
|
|
20
|
+
license
|
|
21
|
+
licenseUrl
|
|
22
|
+
url
|
|
23
|
+
}
|
|
24
|
+
link
|
|
25
|
+
name
|
|
26
|
+
slots
|
|
27
|
+
video
|
|
28
|
+
}
|
|
29
|
+
total
|
|
30
|
+
}
|
|
31
|
+
}
|