@paris-ias/trees 1.8.56
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/LICENSE +679 -0
- package/dist/form/action.js +83 -0
- package/dist/form/affiliation.js +178 -0
- package/dist/form/apps.js +132 -0
- package/dist/form/disciplines.js +30 -0
- package/dist/form/events.js +836 -0
- package/dist/form/fellowships.js +1307 -0
- package/dist/form/files.js +30 -0
- package/dist/form/mailing.js +43 -0
- package/dist/form/news.js +252 -0
- package/dist/form/people.js +658 -0
- package/dist/form/projects.js +338 -0
- package/dist/form/publications.js +364 -0
- package/dist/form/tags.js +38 -0
- package/dist/form/users.js +576 -0
- package/dist/graphql/client/action/query.get.action.gql +22 -0
- package/dist/graphql/client/action/query.list.action.gql +32 -0
- package/dist/graphql/client/affiliation/query.get.affiliations.gql +37 -0
- package/dist/graphql/client/affiliation/query.list.affiliations.gql +43 -0
- package/dist/graphql/client/apps/query.get.apps.gql +33 -0
- package/dist/graphql/client/apps/query.list.apps.gql +43 -0
- package/dist/graphql/client/events/query.get.events.gql +119 -0
- package/dist/graphql/client/events/query.list.events.gql +40 -0
- package/dist/graphql/client/fellowships/query.get.fellowships.gql +163 -0
- package/dist/graphql/client/fellowships/query.list.fellowships.gql +49 -0
- package/dist/graphql/client/files/query.get.files.gql +24 -0
- package/dist/graphql/client/files/query.list.files.gql +37 -0
- package/dist/graphql/client/mailing/query.get.mailing.gql +24 -0
- package/dist/graphql/client/mailing/query.list.mailing.gql +23 -0
- package/dist/graphql/client/misc/apex.mutations.delete.gql +0 -0
- package/dist/graphql/client/misc/apex.mutations.upsert.gql +0 -0
- package/dist/graphql/client/misc/apex.queries.login.gql +0 -0
- package/dist/graphql/client/misc/query.get.disciplines.gql +17 -0
- package/dist/graphql/client/misc/query.get.tags.gql +13 -0
- package/dist/graphql/client/misc/query.list.disciplines.gql +23 -0
- package/dist/graphql/client/misc/query.list.tags.gql +23 -0
- package/dist/graphql/client/news/query.get.news.gql +128 -0
- package/dist/graphql/client/news/query.list.news.gql +35 -0
- package/dist/graphql/client/people/query.get.people.gql +173 -0
- package/dist/graphql/client/people/query.get.users.gql +0 -0
- package/dist/graphql/client/people/query.list.people.gql +55 -0
- package/dist/graphql/client/people/query.list.users.gql +31 -0
- package/dist/graphql/client/projects/query.get.projects.gql +166 -0
- package/dist/graphql/client/projects/query.list.projects.gql +33 -0
- package/dist/graphql/client/publications/query.get.publications.gql +169 -0
- package/dist/graphql/client/publications/query.list.publications.gql +35 -0
- package/dist/graphql/schemas/apex-resolvers-list.json +45 -0
- package/dist/graphql/schemas/schema.apex.graphql +946 -0
- package/dist/graphql/schemas/schema.website.graphql +794 -0
- package/dist/graphql/schemas/website-resolvers-list.json +22 -0
- package/dist/list/action.js +133 -0
- package/dist/list/affiliation.js +133 -0
- package/dist/list/apps.js +133 -0
- package/dist/list/disciplines.js +132 -0
- package/dist/list/events.js +186 -0
- package/dist/list/fellowships.js +149 -0
- package/dist/list/files.js +132 -0
- package/dist/list/mailing.js +132 -0
- package/dist/list/news.js +135 -0
- package/dist/list/people.js +176 -0
- package/dist/list/projects.js +135 -0
- package/dist/list/publications.js +152 -0
- package/dist/list/tags.js +133 -0
- package/dist/list/users.js +176 -0
- package/index.ts +63 -0
- package/lib/README.md +206 -0
- package/lib/buildClientGraphQL.ts +342 -0
- package/lib/buildDefaults.ts +0 -0
- package/lib/buildSchemas.ts +109 -0
- package/lib/generate.ts +505 -0
- package/lib/generateAll.ts +231 -0
- package/lib/utils.ts +24 -0
- package/package.json +34 -0
- package/readme.md +116 -0
- package/src/LICENSE +661 -0
- package/src/action/graphql/client/query.get.action.gql +22 -0
- package/src/action/graphql/client/query.list.action.gql +32 -0
- package/src/action/graphql/server/apex.types.action.graphql +15 -0
- package/src/action/models/action.ts +147 -0
- package/src/affiliation/graphql/client/query.get.affiliations.gql +37 -0
- package/src/affiliation/graphql/client/query.list.affiliations.gql +43 -0
- package/src/affiliation/graphql/server/shared.types.affiliations.graphql +20 -0
- package/src/affiliation/models/affiliation.ts +130 -0
- package/src/affiliation/models/member.ts +11 -0
- package/src/affiliation/models/partner.ts +9 -0
- package/src/apps/graphql/client/query.get.apps.gql +33 -0
- package/src/apps/graphql/client/query.list.apps.gql +43 -0
- package/src/apps/models/apps.ts +195 -0
- package/src/events/graphql/client/query.get.events.gql +119 -0
- package/src/events/graphql/client/query.list.events.gql +40 -0
- package/src/events/graphql/server/shared.inputs.events.graphql +24 -0
- package/src/events/models/eventSlot.ts +73 -0
- package/src/events/models/events.ts +569 -0
- package/src/fellowships/graphql/client/query.get.fellowships.gql +163 -0
- package/src/fellowships/graphql/client/query.list.fellowships.gql +49 -0
- package/src/fellowships/graphql/server/apex.inputs.fellowshipDetails.graphql +13 -0
- package/src/fellowships/graphql/server/shared.types.fellowshipDetails.graphql +13 -0
- package/src/fellowships/graphql/server/shared.types.fellowships.graphql +38 -0
- package/src/fellowships/models/fellowshipDetails.ts +145 -0
- package/src/fellowships/models/fellowships.ts +341 -0
- package/src/files/graphql/client/query.get.files.gql +24 -0
- package/src/files/graphql/client/query.list.files.gql +37 -0
- package/src/files/graphql/server/apex.inputs.files.graphql +7 -0
- package/src/files/graphql/server/apex.inputs.video.graphql +9 -0
- package/src/files/graphql/server/apex.types.files.graphql +4 -0
- package/src/files/graphql/server/shared.inputs.image.graphql +9 -0
- package/src/files/graphql/server/shared.types.files.graphql +15 -0
- package/src/files/graphql/server/shared.types.image.graphql +9 -0
- package/src/files/graphql/server/shared.types.video.graphql +9 -0
- package/src/files/models/files.ts +113 -0
- package/src/files/models/gallery.ts +11 -0
- package/src/files/models/image.ts +159 -0
- package/src/files/models/video.ts +166 -0
- package/src/form.ts +52 -0
- package/src/index.ts +98 -0
- package/src/list.ts +34 -0
- package/src/mailing/graphql/client/query.get.mailing.gql +24 -0
- package/src/mailing/graphql/client/query.list.mailing.gql +23 -0
- package/src/mailing/graphql/server/apex.types.mailing.graphql +13 -0
- package/src/mailing/models/mailing.ts +123 -0
- package/src/misc/graphql/client/apex.mutations.delete.gql +0 -0
- package/src/misc/graphql/client/apex.mutations.upsert.gql +0 -0
- package/src/misc/graphql/client/apex.queries.login.gql +0 -0
- package/src/misc/graphql/client/query.get.disciplines.gql +17 -0
- package/src/misc/graphql/client/query.get.tags.gql +13 -0
- package/src/misc/graphql/client/query.list.disciplines.gql +23 -0
- package/src/misc/graphql/client/query.list.tags.gql +23 -0
- package/src/misc/graphql/server/apex.inputs.misc.graphql +13 -0
- package/src/misc/graphql/server/apex.inputs.socials.graphql +12 -0
- package/src/misc/graphql/server/apex.mutations.graphql +23 -0
- package/src/misc/graphql/server/apex.queries.graphql +36 -0
- package/src/misc/graphql/server/apex.types.disciplines.graphql +4 -0
- package/src/misc/graphql/server/apex.types.tags.graphql +4 -0
- package/src/misc/graphql/server/shared.enums.graphql +112 -0
- package/src/misc/graphql/server/shared.inputs.misc.graphql +101 -0
- package/src/misc/graphql/server/shared.queries.graphql +35 -0
- package/src/misc/graphql/server/shared.types.disciplines.graphql +8 -0
- package/src/misc/graphql/server/shared.types.events.graphql +39 -0
- package/src/misc/graphql/server/shared.types.location.graphql +17 -0
- package/src/misc/graphql/server/shared.types.misc.graphql +120 -0
- package/src/misc/graphql/server/shared.types.related.graphql +10 -0
- package/src/misc/graphql/server/shared.types.relatedAffiliation.graphql +7 -0
- package/src/misc/graphql/server/shared.types.relatedEvent.graphql +7 -0
- package/src/misc/graphql/server/shared.types.relatedFellowships.graphql +7 -0
- package/src/misc/graphql/server/shared.types.relatedNews.graphql +7 -0
- package/src/misc/graphql/server/shared.types.relatedPeople.graphql +6 -0
- package/src/misc/graphql/server/shared.types.relatedProject.graphql +7 -0
- package/src/misc/graphql/server/shared.types.relatedPublications.graphql +6 -0
- package/src/misc/graphql/server/shared.types.socials.graphql +22 -0
- package/src/misc/graphql/server/shared.types.tags.graphql +11 -0
- package/src/misc/graphql/server/website.mutations.graphql +4 -0
- package/src/misc/models/disciplines.ts +116 -0
- package/src/misc/models/location.ts +136 -0
- package/src/misc/models/organizers.ts +13 -0
- package/src/misc/models/related.ts +123 -0
- package/src/misc/models/relatedEvents.ts +16 -0
- package/src/misc/models/relatedFellowships.ts +7 -0
- package/src/misc/models/relatedNews.ts +13 -0
- package/src/misc/models/relatedPeople.ts +8 -0
- package/src/misc/models/relatedProject.ts +14 -0
- package/src/misc/models/relatedPublications.ts +14 -0
- package/src/misc/models/socials.ts +133 -0
- package/src/misc/models/sponsor.ts +13 -0
- package/src/misc/models/tags.ts +116 -0
- package/src/misc/models/taxonomy.ts +1 -0
- package/src/model.ts +7 -0
- package/src/news/graphql/client/query.get.news.gql +128 -0
- package/src/news/graphql/client/query.list.news.gql +35 -0
- package/src/news/graphql/server/share.types.news.graphql +27 -0
- package/src/news/models/news.ts +257 -0
- package/src/people/graphql/client/query.get.people.gql +173 -0
- package/src/people/graphql/client/query.get.users.gql +0 -0
- package/src/people/graphql/client/query.list.people.gql +55 -0
- package/src/people/graphql/client/query.list.users.gql +31 -0
- package/src/people/graphql/server/apex.inputs.consent.graphql +9 -0
- package/src/people/graphql/server/apex.inputs.groups.graphql +8 -0
- package/src/people/graphql/server/apex.inputs.vintage.graphql +6 -0
- package/src/people/graphql/server/shared.types.consent.graphql +9 -0
- package/src/people/graphql/server/shared.types.groups.graphql +8 -0
- package/src/people/graphql/server/shared.types.people.graphql +29 -0
- package/src/people/graphql/server/shared.types.position.graphql +6 -0
- package/src/people/graphql/server/shared.types.users.graphql +17 -0
- package/src/people/graphql/server/shared.types.vintage.graphql +6 -0
- package/src/people/models/consent.ts +82 -0
- package/src/people/models/discussants.ts +9 -0
- package/src/people/models/experiences.ts +38 -0
- package/src/people/models/fellows.ts +12 -0
- package/src/people/models/groups.ts +58 -0
- package/src/people/models/people.ts +244 -0
- package/src/people/models/position.ts +62 -0
- package/src/people/models/speakers.ts +9 -0
- package/src/people/models/users.ts +252 -0
- package/src/people/models/vintage.ts +124 -0
- package/src/projects/graphql/client/query.get.projects.gql +166 -0
- package/src/projects/graphql/client/query.list.projects.gql +33 -0
- package/src/projects/graphql/server/shared.types.projects.graphql +29 -0
- package/src/projects/models/projects.ts +249 -0
- package/src/publications/graphql/client/query.get.publications.gql +169 -0
- package/src/publications/graphql/client/query.list.publications.gql +35 -0
- package/src/publications/graphql/server/shared.types.publications.graphql +34 -0
- package/src/publications/models/article.ts +262 -0
- package/src/publications/models/publications.ts +306 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"_defaults": {
|
|
3
|
+
"name": "",
|
|
4
|
+
"description": "",
|
|
5
|
+
"icon": ""
|
|
6
|
+
},
|
|
7
|
+
"schema": {
|
|
8
|
+
"name": {
|
|
9
|
+
"label": "name",
|
|
10
|
+
"component": "TextField",
|
|
11
|
+
"type": "PRIMITIVE",
|
|
12
|
+
"rules": {
|
|
13
|
+
"required": true,
|
|
14
|
+
"min": 5,
|
|
15
|
+
"max": 200
|
|
16
|
+
},
|
|
17
|
+
"meta": "name"
|
|
18
|
+
},
|
|
19
|
+
"description": {
|
|
20
|
+
"label": "description",
|
|
21
|
+
"component": "TextArea",
|
|
22
|
+
"type": "PRIMITIVE",
|
|
23
|
+
"rules": {
|
|
24
|
+
"required": true,
|
|
25
|
+
"min": 5,
|
|
26
|
+
"max": 2000
|
|
27
|
+
},
|
|
28
|
+
"meta": "description"
|
|
29
|
+
},
|
|
30
|
+
"icon": {
|
|
31
|
+
"label": "icon",
|
|
32
|
+
"component": "IconPicker",
|
|
33
|
+
"type": "PRIMITIVE",
|
|
34
|
+
"description": "Select your icon from material design icons https://pictogrammers.com/library/mdi/",
|
|
35
|
+
"meta": "icon"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,576 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"_defaults": {
|
|
3
|
+
"firstname": "",
|
|
4
|
+
"lastname": "",
|
|
5
|
+
"affiliations": "",
|
|
6
|
+
"image": "",
|
|
7
|
+
"socials": {
|
|
8
|
+
"website": "",
|
|
9
|
+
"wikipedia": "",
|
|
10
|
+
"orcid": "",
|
|
11
|
+
"scholar": "",
|
|
12
|
+
"researchgate": "",
|
|
13
|
+
"mendeley": "",
|
|
14
|
+
"idRef": "",
|
|
15
|
+
"twitter": "",
|
|
16
|
+
"linkedin": "",
|
|
17
|
+
"bluesky": "",
|
|
18
|
+
"instagram": "",
|
|
19
|
+
"youtube": ""
|
|
20
|
+
},
|
|
21
|
+
"disciplines": "",
|
|
22
|
+
"video": [
|
|
23
|
+
{
|
|
24
|
+
"video": {
|
|
25
|
+
"url": "",
|
|
26
|
+
"caption": {
|
|
27
|
+
"en": "",
|
|
28
|
+
"fr": ""
|
|
29
|
+
},
|
|
30
|
+
"alt": {
|
|
31
|
+
"en": "",
|
|
32
|
+
"fr": ""
|
|
33
|
+
},
|
|
34
|
+
"copyright": "Free of rights",
|
|
35
|
+
"licence": "",
|
|
36
|
+
"licenseUrl": "",
|
|
37
|
+
"backgroundColor": ""
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"biography": {
|
|
42
|
+
"en": "",
|
|
43
|
+
"fr": ""
|
|
44
|
+
},
|
|
45
|
+
"related": {
|
|
46
|
+
"events": "",
|
|
47
|
+
"news": "",
|
|
48
|
+
"people": "",
|
|
49
|
+
"publications": "",
|
|
50
|
+
"projects": "",
|
|
51
|
+
"fellowships": ""
|
|
52
|
+
},
|
|
53
|
+
"consent": {
|
|
54
|
+
"data": false,
|
|
55
|
+
"record": false,
|
|
56
|
+
"diffusion": false,
|
|
57
|
+
"publication": false,
|
|
58
|
+
"email": false,
|
|
59
|
+
"newsletter": false,
|
|
60
|
+
"fellowshipnewsletter": false
|
|
61
|
+
},
|
|
62
|
+
"groups": {
|
|
63
|
+
"team": false,
|
|
64
|
+
"sab": false,
|
|
65
|
+
"board": false,
|
|
66
|
+
"fellows": false,
|
|
67
|
+
"sponsor": false,
|
|
68
|
+
"vintage": [
|
|
69
|
+
{
|
|
70
|
+
"name": "",
|
|
71
|
+
"year": "",
|
|
72
|
+
"theme": {
|
|
73
|
+
"en": "",
|
|
74
|
+
"fr": ""
|
|
75
|
+
},
|
|
76
|
+
"url": ""
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
"lang": ""
|
|
81
|
+
},
|
|
82
|
+
"schema": {
|
|
83
|
+
"firstname": {
|
|
84
|
+
"label": "firstname",
|
|
85
|
+
"component": "TextField",
|
|
86
|
+
"type": "PRIMITIVE",
|
|
87
|
+
"rules": {
|
|
88
|
+
"required": true,
|
|
89
|
+
"min": 1,
|
|
90
|
+
"max": 200
|
|
91
|
+
},
|
|
92
|
+
"meta": "firstname"
|
|
93
|
+
},
|
|
94
|
+
"lastname": {
|
|
95
|
+
"label": "lastname",
|
|
96
|
+
"component": "TextField",
|
|
97
|
+
"type": "PRIMITIVE",
|
|
98
|
+
"rules": {
|
|
99
|
+
"required": true,
|
|
100
|
+
"min": 1,
|
|
101
|
+
"max": 200
|
|
102
|
+
},
|
|
103
|
+
"meta": "lastname"
|
|
104
|
+
},
|
|
105
|
+
"affiliations": {
|
|
106
|
+
"label": "affiliations",
|
|
107
|
+
"component": "AffiliationPicker",
|
|
108
|
+
"type": "DOCUMENT",
|
|
109
|
+
"meta": "affiliations",
|
|
110
|
+
"default": ""
|
|
111
|
+
},
|
|
112
|
+
"image": {
|
|
113
|
+
"label": "image",
|
|
114
|
+
"component": "ImagePicker",
|
|
115
|
+
"type": "DOCUMENT",
|
|
116
|
+
"meta": "image",
|
|
117
|
+
"default": ""
|
|
118
|
+
},
|
|
119
|
+
"socials": {
|
|
120
|
+
"label": "socials",
|
|
121
|
+
"component": "ObjectContainerPanel",
|
|
122
|
+
"type": "OBJECT",
|
|
123
|
+
"meta": "socials",
|
|
124
|
+
"items": {
|
|
125
|
+
"website": {
|
|
126
|
+
"label": "website",
|
|
127
|
+
"type": "PRIMITIVE",
|
|
128
|
+
"component": "TextField",
|
|
129
|
+
"rules": {
|
|
130
|
+
"url": true
|
|
131
|
+
},
|
|
132
|
+
"meta": "website"
|
|
133
|
+
},
|
|
134
|
+
"wikipedia": {
|
|
135
|
+
"label": "wikipedia",
|
|
136
|
+
"type": "PRIMITIVE",
|
|
137
|
+
"component": "TextField",
|
|
138
|
+
"rules": {
|
|
139
|
+
"url": true
|
|
140
|
+
},
|
|
141
|
+
"meta": "wikipedia"
|
|
142
|
+
},
|
|
143
|
+
"orcid": {
|
|
144
|
+
"label": "orcid",
|
|
145
|
+
"type": "PRIMITIVE",
|
|
146
|
+
"component": "TextField",
|
|
147
|
+
"rules": {
|
|
148
|
+
"orcid": true
|
|
149
|
+
},
|
|
150
|
+
"meta": "orcid"
|
|
151
|
+
},
|
|
152
|
+
"scholar": {
|
|
153
|
+
"label": "scholar",
|
|
154
|
+
"type": "PRIMITIVE",
|
|
155
|
+
"component": "TextField",
|
|
156
|
+
"rules": {
|
|
157
|
+
"url": true
|
|
158
|
+
},
|
|
159
|
+
"meta": "scholar"
|
|
160
|
+
},
|
|
161
|
+
"researchgate": {
|
|
162
|
+
"label": "researchgate",
|
|
163
|
+
"type": "PRIMITIVE",
|
|
164
|
+
"component": "TextField",
|
|
165
|
+
"rules": {
|
|
166
|
+
"url": true
|
|
167
|
+
},
|
|
168
|
+
"meta": "researchgate"
|
|
169
|
+
},
|
|
170
|
+
"mendeley": {
|
|
171
|
+
"label": "mendeley",
|
|
172
|
+
"type": "PRIMITIVE",
|
|
173
|
+
"component": "TextField",
|
|
174
|
+
"rules": {
|
|
175
|
+
"url": true
|
|
176
|
+
},
|
|
177
|
+
"meta": "mendeley"
|
|
178
|
+
},
|
|
179
|
+
"idRef": {
|
|
180
|
+
"label": "idRef",
|
|
181
|
+
"type": "PRIMITIVE",
|
|
182
|
+
"component": "TextField",
|
|
183
|
+
"rules": {
|
|
184
|
+
"url": true
|
|
185
|
+
},
|
|
186
|
+
"meta": "idRef"
|
|
187
|
+
},
|
|
188
|
+
"twitter": {
|
|
189
|
+
"label": "twitter",
|
|
190
|
+
"type": "PRIMITIVE",
|
|
191
|
+
"component": "TextField",
|
|
192
|
+
"rules": {
|
|
193
|
+
"url": true
|
|
194
|
+
},
|
|
195
|
+
"meta": "twitter"
|
|
196
|
+
},
|
|
197
|
+
"linkedin": {
|
|
198
|
+
"label": "linkedin",
|
|
199
|
+
"type": "PRIMITIVE",
|
|
200
|
+
"component": "TextField",
|
|
201
|
+
"rules": {
|
|
202
|
+
"url": true
|
|
203
|
+
},
|
|
204
|
+
"meta": "linkedin"
|
|
205
|
+
},
|
|
206
|
+
"bluesky": {
|
|
207
|
+
"label": "bluesky",
|
|
208
|
+
"type": "PRIMITIVE",
|
|
209
|
+
"component": "TextField",
|
|
210
|
+
"rules": {
|
|
211
|
+
"url": true
|
|
212
|
+
},
|
|
213
|
+
"meta": "bluesky"
|
|
214
|
+
},
|
|
215
|
+
"instagram": {
|
|
216
|
+
"label": "instagram",
|
|
217
|
+
"type": "PRIMITIVE",
|
|
218
|
+
"component": "TextField",
|
|
219
|
+
"rules": {
|
|
220
|
+
"url": true
|
|
221
|
+
},
|
|
222
|
+
"meta": "instagram"
|
|
223
|
+
},
|
|
224
|
+
"youtube": {
|
|
225
|
+
"label": "youtube",
|
|
226
|
+
"type": "PRIMITIVE",
|
|
227
|
+
"component": "TextField",
|
|
228
|
+
"rules": {
|
|
229
|
+
"url": true
|
|
230
|
+
},
|
|
231
|
+
"meta": "youtube"
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"disciplines": {
|
|
236
|
+
"label": "disciplines",
|
|
237
|
+
"component": "DisciplinePicker",
|
|
238
|
+
"type": "DOCUMENT",
|
|
239
|
+
"meta": "disciplines",
|
|
240
|
+
"default": ""
|
|
241
|
+
},
|
|
242
|
+
"video": {
|
|
243
|
+
"label": "video",
|
|
244
|
+
"component": "CollectionContainerPanel",
|
|
245
|
+
"type": "ARRAY",
|
|
246
|
+
"meta": "video",
|
|
247
|
+
"items": {
|
|
248
|
+
"video": {
|
|
249
|
+
"label": "video",
|
|
250
|
+
"component": "ObjectContainerPanel",
|
|
251
|
+
"type": "OBJECT",
|
|
252
|
+
"meta": "video",
|
|
253
|
+
"items": {
|
|
254
|
+
"url": {
|
|
255
|
+
"type": "PRIMITIVE",
|
|
256
|
+
"component": "TextField",
|
|
257
|
+
"label": "url",
|
|
258
|
+
"description": "The url where the image is fetched from",
|
|
259
|
+
"rules": {
|
|
260
|
+
"required": true,
|
|
261
|
+
"url": true,
|
|
262
|
+
"max": 2048
|
|
263
|
+
},
|
|
264
|
+
"meta": "url"
|
|
265
|
+
},
|
|
266
|
+
"caption": {
|
|
267
|
+
"label": "caption",
|
|
268
|
+
"type": "PRIMITIVE",
|
|
269
|
+
"component": "TextField",
|
|
270
|
+
"i18n": true,
|
|
271
|
+
"rules": {
|
|
272
|
+
"required": true,
|
|
273
|
+
"min": 2,
|
|
274
|
+
"max": 100
|
|
275
|
+
},
|
|
276
|
+
"meta": "caption"
|
|
277
|
+
},
|
|
278
|
+
"alt": {
|
|
279
|
+
"label": "alt",
|
|
280
|
+
"type": "PRIMITIVE",
|
|
281
|
+
"i18n": true,
|
|
282
|
+
"component": "TextField",
|
|
283
|
+
"description": "Displayed if the image cannot be loaded",
|
|
284
|
+
"rules": {
|
|
285
|
+
"max": 200
|
|
286
|
+
},
|
|
287
|
+
"meta": "alt"
|
|
288
|
+
},
|
|
289
|
+
"copyright": {
|
|
290
|
+
"label": "copyright",
|
|
291
|
+
"type": "PRIMITIVE",
|
|
292
|
+
"component": "TextField",
|
|
293
|
+
"default": "Free of rights",
|
|
294
|
+
"description": "Owner of the image copyright",
|
|
295
|
+
"meta": "copyright"
|
|
296
|
+
},
|
|
297
|
+
"licence": {
|
|
298
|
+
"label": "licence",
|
|
299
|
+
"type": "PRIMITIVE",
|
|
300
|
+
"component": "TextField",
|
|
301
|
+
"default": null,
|
|
302
|
+
"description": "The licence of the video",
|
|
303
|
+
"meta": "licence"
|
|
304
|
+
},
|
|
305
|
+
"licenseUrl": {
|
|
306
|
+
"label": "licenseUrl",
|
|
307
|
+
"type": "PRIMITIVE",
|
|
308
|
+
"component": "TextField",
|
|
309
|
+
"default": null,
|
|
310
|
+
"description": "The caption of the video",
|
|
311
|
+
"rules": {
|
|
312
|
+
"url": true
|
|
313
|
+
},
|
|
314
|
+
"show": {
|
|
315
|
+
"default": false,
|
|
316
|
+
"switchIf": [],
|
|
317
|
+
"disjonctive": false
|
|
318
|
+
},
|
|
319
|
+
"meta": "licenseUrl"
|
|
320
|
+
},
|
|
321
|
+
"backgroundColor": {
|
|
322
|
+
"label": "backgroundColor",
|
|
323
|
+
"type": "PRIMITIVE",
|
|
324
|
+
"component": "ColorPicker",
|
|
325
|
+
"default": null,
|
|
326
|
+
"rules": {
|
|
327
|
+
"color": true
|
|
328
|
+
},
|
|
329
|
+
"show": {
|
|
330
|
+
"default": false,
|
|
331
|
+
"switchIf": [],
|
|
332
|
+
"disjonctive": false
|
|
333
|
+
},
|
|
334
|
+
"meta": "backgroundColor"
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
"biography": {
|
|
341
|
+
"label": "biography",
|
|
342
|
+
"component": "TextArea",
|
|
343
|
+
"i18n": true,
|
|
344
|
+
"type": "PRIMITIVE",
|
|
345
|
+
"rules": {
|
|
346
|
+
"required": true,
|
|
347
|
+
"min": 5,
|
|
348
|
+
"max": 2000
|
|
349
|
+
},
|
|
350
|
+
"meta": "biography"
|
|
351
|
+
},
|
|
352
|
+
"related": {
|
|
353
|
+
"label": "related",
|
|
354
|
+
"component": "ObjectContainerPanel",
|
|
355
|
+
"type": "OBJECT",
|
|
356
|
+
"rules": {
|
|
357
|
+
"required": true,
|
|
358
|
+
"min": 5,
|
|
359
|
+
"max": 200
|
|
360
|
+
},
|
|
361
|
+
"meta": "related",
|
|
362
|
+
"items": {
|
|
363
|
+
"events": {
|
|
364
|
+
"label": "relatedEvent",
|
|
365
|
+
"component": "DocumentPicker",
|
|
366
|
+
"type": "DOCUMENT",
|
|
367
|
+
"meta": "event",
|
|
368
|
+
"default": ""
|
|
369
|
+
},
|
|
370
|
+
"news": {
|
|
371
|
+
"label": "relatedNews",
|
|
372
|
+
"component": "DocumentPicker",
|
|
373
|
+
"type": "DOCUMENT",
|
|
374
|
+
"meta": "news",
|
|
375
|
+
"default": ""
|
|
376
|
+
},
|
|
377
|
+
"people": {
|
|
378
|
+
"label": "relatedPeople",
|
|
379
|
+
"component": "DocumentPicker",
|
|
380
|
+
"type": "DOCUMENT",
|
|
381
|
+
"meta": "people",
|
|
382
|
+
"default": ""
|
|
383
|
+
},
|
|
384
|
+
"publications": {
|
|
385
|
+
"label": "relatedPublication",
|
|
386
|
+
"component": "DocumentPicker",
|
|
387
|
+
"type": "DOCUMENT",
|
|
388
|
+
"meta": "publication",
|
|
389
|
+
"default": ""
|
|
390
|
+
},
|
|
391
|
+
"projects": {
|
|
392
|
+
"label": "relatedProject",
|
|
393
|
+
"component": "DocumentPicker",
|
|
394
|
+
"type": "DOCUMENT",
|
|
395
|
+
"meta": "project",
|
|
396
|
+
"default": ""
|
|
397
|
+
},
|
|
398
|
+
"fellowships": {
|
|
399
|
+
"label": "relatedFellowships",
|
|
400
|
+
"component": "DocumentPicker",
|
|
401
|
+
"type": "DOCUMENT",
|
|
402
|
+
"meta": "fellowship",
|
|
403
|
+
"default": ""
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
},
|
|
407
|
+
"consent": {
|
|
408
|
+
"label": "consent",
|
|
409
|
+
"component": "ObjectContainerPanel",
|
|
410
|
+
"type": "OBJECT",
|
|
411
|
+
"rules": {
|
|
412
|
+
"required": true
|
|
413
|
+
},
|
|
414
|
+
"meta": "consent",
|
|
415
|
+
"items": {
|
|
416
|
+
"data": {
|
|
417
|
+
"label": "data",
|
|
418
|
+
"component": "Checkbox",
|
|
419
|
+
"type": "PRIMITIVE",
|
|
420
|
+
"default": false,
|
|
421
|
+
"hint": "My profile will be showcased on the Paris IAS websites",
|
|
422
|
+
"meta": "data"
|
|
423
|
+
},
|
|
424
|
+
"record": {
|
|
425
|
+
"label": "record",
|
|
426
|
+
"component": "Checkbox",
|
|
427
|
+
"type": "PRIMITIVE",
|
|
428
|
+
"default": false,
|
|
429
|
+
"hint": "Necessary if you appear in a video or audio recording",
|
|
430
|
+
"meta": "record"
|
|
431
|
+
},
|
|
432
|
+
"diffusion": {
|
|
433
|
+
"label": "diffusion",
|
|
434
|
+
"component": "Checkbox",
|
|
435
|
+
"type": "PRIMITIVE",
|
|
436
|
+
"default": false,
|
|
437
|
+
"hint": "To make available my video and audio recordings in publicaitons, news, events...",
|
|
438
|
+
"meta": "diffusion"
|
|
439
|
+
},
|
|
440
|
+
"publication": {
|
|
441
|
+
"label": "publication",
|
|
442
|
+
"component": "Checkbox",
|
|
443
|
+
"type": "PRIMITIVE",
|
|
444
|
+
"default": false,
|
|
445
|
+
"hint": "To be officially published as an academic author and provide your content with a DOI",
|
|
446
|
+
"meta": "publication"
|
|
447
|
+
},
|
|
448
|
+
"email": {
|
|
449
|
+
"label": "email",
|
|
450
|
+
"component": "Checkbox",
|
|
451
|
+
"type": "PRIMITIVE",
|
|
452
|
+
"default": false,
|
|
453
|
+
"hint": "To allow us to send you email communications in general (including newsletter)",
|
|
454
|
+
"meta": "email"
|
|
455
|
+
},
|
|
456
|
+
"newsletter": {
|
|
457
|
+
"label": "newsletter",
|
|
458
|
+
"component": "Checkbox",
|
|
459
|
+
"type": "PRIMITIVE",
|
|
460
|
+
"default": false,
|
|
461
|
+
"meta": "newsletter"
|
|
462
|
+
},
|
|
463
|
+
"fellowshipnewsletter": {
|
|
464
|
+
"label": "fellowshipnewsletter",
|
|
465
|
+
"component": "Checkbox",
|
|
466
|
+
"type": "PRIMITIVE",
|
|
467
|
+
"default": false,
|
|
468
|
+
"meta": "fellowshipnewsletter"
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
"groups": {
|
|
473
|
+
"label": "groups",
|
|
474
|
+
"component": "ObjectContainerPanel",
|
|
475
|
+
"type": "OBJECT",
|
|
476
|
+
"rules": {
|
|
477
|
+
"required": true
|
|
478
|
+
},
|
|
479
|
+
"meta": "groups",
|
|
480
|
+
"items": {
|
|
481
|
+
"team": {
|
|
482
|
+
"label": "team",
|
|
483
|
+
"component": "Checkbox",
|
|
484
|
+
"type": "PRIMITIVE",
|
|
485
|
+
"meta": "team"
|
|
486
|
+
},
|
|
487
|
+
"sab": {
|
|
488
|
+
"label": "sab",
|
|
489
|
+
"component": "Checkbox",
|
|
490
|
+
"type": "PRIMITIVE",
|
|
491
|
+
"meta": "sab"
|
|
492
|
+
},
|
|
493
|
+
"board": {
|
|
494
|
+
"label": "board",
|
|
495
|
+
"component": "Checkbox",
|
|
496
|
+
"type": "PRIMITIVE",
|
|
497
|
+
"meta": "board"
|
|
498
|
+
},
|
|
499
|
+
"fellows": {
|
|
500
|
+
"label": "fellows",
|
|
501
|
+
"component": "Checkbox",
|
|
502
|
+
"type": "PRIMITIVE",
|
|
503
|
+
"meta": "fellow"
|
|
504
|
+
},
|
|
505
|
+
"sponsor": {
|
|
506
|
+
"label": "sponsor",
|
|
507
|
+
"component": "Checkbox",
|
|
508
|
+
"type": "PRIMITIVE",
|
|
509
|
+
"meta": "sponsor"
|
|
510
|
+
},
|
|
511
|
+
"vintage": {
|
|
512
|
+
"label": "vintage",
|
|
513
|
+
"component": "CollectionContainerPanel",
|
|
514
|
+
"type": "ARRAY",
|
|
515
|
+
"meta": "vintage",
|
|
516
|
+
"items": {
|
|
517
|
+
"name": {
|
|
518
|
+
"label": "name",
|
|
519
|
+
"type": "PRIMITIVE",
|
|
520
|
+
"component": "TextField",
|
|
521
|
+
"rules": {
|
|
522
|
+
"required": true,
|
|
523
|
+
"min": 2,
|
|
524
|
+
"max": 100
|
|
525
|
+
},
|
|
526
|
+
"meta": "name"
|
|
527
|
+
},
|
|
528
|
+
"year": {
|
|
529
|
+
"label": "year",
|
|
530
|
+
"type": "PRIMITIVE",
|
|
531
|
+
"component": "TextField",
|
|
532
|
+
"rules": {
|
|
533
|
+
"required": true,
|
|
534
|
+
"min": 2,
|
|
535
|
+
"max": 100
|
|
536
|
+
},
|
|
537
|
+
"meta": "year"
|
|
538
|
+
},
|
|
539
|
+
"theme": {
|
|
540
|
+
"label": "theme",
|
|
541
|
+
"type": "PRIMITIVE",
|
|
542
|
+
"component": "TextField",
|
|
543
|
+
"i18n": true,
|
|
544
|
+
"rules": {
|
|
545
|
+
"required": true,
|
|
546
|
+
"min": 2,
|
|
547
|
+
"max": 100
|
|
548
|
+
},
|
|
549
|
+
"meta": "theme"
|
|
550
|
+
},
|
|
551
|
+
"url": {
|
|
552
|
+
"type": "PRIMITIVE",
|
|
553
|
+
"component": "TextField",
|
|
554
|
+
"label": "url",
|
|
555
|
+
"rules": {
|
|
556
|
+
"required": true,
|
|
557
|
+
"url": true,
|
|
558
|
+
"max": 2048
|
|
559
|
+
},
|
|
560
|
+
"meta": "url"
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
"lang": {
|
|
567
|
+
"label": "lang",
|
|
568
|
+
"component": "AutoComplete",
|
|
569
|
+
"type": "PRIMITIVE",
|
|
570
|
+
"rules": {
|
|
571
|
+
"required": true
|
|
572
|
+
},
|
|
573
|
+
"meta": "lang"
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
}
|
|
@@ -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,32 @@
|
|
|
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
|
+
slug
|
|
29
|
+
}
|
|
30
|
+
total
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -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
|
+
}
|