@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.
Files changed (202) hide show
  1. package/LICENSE +679 -0
  2. package/dist/form/action.js +83 -0
  3. package/dist/form/affiliation.js +178 -0
  4. package/dist/form/apps.js +132 -0
  5. package/dist/form/disciplines.js +30 -0
  6. package/dist/form/events.js +836 -0
  7. package/dist/form/fellowships.js +1307 -0
  8. package/dist/form/files.js +30 -0
  9. package/dist/form/mailing.js +43 -0
  10. package/dist/form/news.js +252 -0
  11. package/dist/form/people.js +658 -0
  12. package/dist/form/projects.js +338 -0
  13. package/dist/form/publications.js +364 -0
  14. package/dist/form/tags.js +38 -0
  15. package/dist/form/users.js +576 -0
  16. package/dist/graphql/client/action/query.get.action.gql +22 -0
  17. package/dist/graphql/client/action/query.list.action.gql +32 -0
  18. package/dist/graphql/client/affiliation/query.get.affiliations.gql +37 -0
  19. package/dist/graphql/client/affiliation/query.list.affiliations.gql +43 -0
  20. package/dist/graphql/client/apps/query.get.apps.gql +33 -0
  21. package/dist/graphql/client/apps/query.list.apps.gql +43 -0
  22. package/dist/graphql/client/events/query.get.events.gql +119 -0
  23. package/dist/graphql/client/events/query.list.events.gql +40 -0
  24. package/dist/graphql/client/fellowships/query.get.fellowships.gql +163 -0
  25. package/dist/graphql/client/fellowships/query.list.fellowships.gql +49 -0
  26. package/dist/graphql/client/files/query.get.files.gql +24 -0
  27. package/dist/graphql/client/files/query.list.files.gql +37 -0
  28. package/dist/graphql/client/mailing/query.get.mailing.gql +24 -0
  29. package/dist/graphql/client/mailing/query.list.mailing.gql +23 -0
  30. package/dist/graphql/client/misc/apex.mutations.delete.gql +0 -0
  31. package/dist/graphql/client/misc/apex.mutations.upsert.gql +0 -0
  32. package/dist/graphql/client/misc/apex.queries.login.gql +0 -0
  33. package/dist/graphql/client/misc/query.get.disciplines.gql +17 -0
  34. package/dist/graphql/client/misc/query.get.tags.gql +13 -0
  35. package/dist/graphql/client/misc/query.list.disciplines.gql +23 -0
  36. package/dist/graphql/client/misc/query.list.tags.gql +23 -0
  37. package/dist/graphql/client/news/query.get.news.gql +128 -0
  38. package/dist/graphql/client/news/query.list.news.gql +35 -0
  39. package/dist/graphql/client/people/query.get.people.gql +173 -0
  40. package/dist/graphql/client/people/query.get.users.gql +0 -0
  41. package/dist/graphql/client/people/query.list.people.gql +55 -0
  42. package/dist/graphql/client/people/query.list.users.gql +31 -0
  43. package/dist/graphql/client/projects/query.get.projects.gql +166 -0
  44. package/dist/graphql/client/projects/query.list.projects.gql +33 -0
  45. package/dist/graphql/client/publications/query.get.publications.gql +169 -0
  46. package/dist/graphql/client/publications/query.list.publications.gql +35 -0
  47. package/dist/graphql/schemas/apex-resolvers-list.json +45 -0
  48. package/dist/graphql/schemas/schema.apex.graphql +946 -0
  49. package/dist/graphql/schemas/schema.website.graphql +794 -0
  50. package/dist/graphql/schemas/website-resolvers-list.json +22 -0
  51. package/dist/list/action.js +133 -0
  52. package/dist/list/affiliation.js +133 -0
  53. package/dist/list/apps.js +133 -0
  54. package/dist/list/disciplines.js +132 -0
  55. package/dist/list/events.js +186 -0
  56. package/dist/list/fellowships.js +149 -0
  57. package/dist/list/files.js +132 -0
  58. package/dist/list/mailing.js +132 -0
  59. package/dist/list/news.js +135 -0
  60. package/dist/list/people.js +176 -0
  61. package/dist/list/projects.js +135 -0
  62. package/dist/list/publications.js +152 -0
  63. package/dist/list/tags.js +133 -0
  64. package/dist/list/users.js +176 -0
  65. package/index.ts +63 -0
  66. package/lib/README.md +206 -0
  67. package/lib/buildClientGraphQL.ts +342 -0
  68. package/lib/buildDefaults.ts +0 -0
  69. package/lib/buildSchemas.ts +109 -0
  70. package/lib/generate.ts +505 -0
  71. package/lib/generateAll.ts +231 -0
  72. package/lib/utils.ts +24 -0
  73. package/package.json +34 -0
  74. package/readme.md +116 -0
  75. package/src/LICENSE +661 -0
  76. package/src/action/graphql/client/query.get.action.gql +22 -0
  77. package/src/action/graphql/client/query.list.action.gql +32 -0
  78. package/src/action/graphql/server/apex.types.action.graphql +15 -0
  79. package/src/action/models/action.ts +147 -0
  80. package/src/affiliation/graphql/client/query.get.affiliations.gql +37 -0
  81. package/src/affiliation/graphql/client/query.list.affiliations.gql +43 -0
  82. package/src/affiliation/graphql/server/shared.types.affiliations.graphql +20 -0
  83. package/src/affiliation/models/affiliation.ts +130 -0
  84. package/src/affiliation/models/member.ts +11 -0
  85. package/src/affiliation/models/partner.ts +9 -0
  86. package/src/apps/graphql/client/query.get.apps.gql +33 -0
  87. package/src/apps/graphql/client/query.list.apps.gql +43 -0
  88. package/src/apps/models/apps.ts +195 -0
  89. package/src/events/graphql/client/query.get.events.gql +119 -0
  90. package/src/events/graphql/client/query.list.events.gql +40 -0
  91. package/src/events/graphql/server/shared.inputs.events.graphql +24 -0
  92. package/src/events/models/eventSlot.ts +73 -0
  93. package/src/events/models/events.ts +569 -0
  94. package/src/fellowships/graphql/client/query.get.fellowships.gql +163 -0
  95. package/src/fellowships/graphql/client/query.list.fellowships.gql +49 -0
  96. package/src/fellowships/graphql/server/apex.inputs.fellowshipDetails.graphql +13 -0
  97. package/src/fellowships/graphql/server/shared.types.fellowshipDetails.graphql +13 -0
  98. package/src/fellowships/graphql/server/shared.types.fellowships.graphql +38 -0
  99. package/src/fellowships/models/fellowshipDetails.ts +145 -0
  100. package/src/fellowships/models/fellowships.ts +341 -0
  101. package/src/files/graphql/client/query.get.files.gql +24 -0
  102. package/src/files/graphql/client/query.list.files.gql +37 -0
  103. package/src/files/graphql/server/apex.inputs.files.graphql +7 -0
  104. package/src/files/graphql/server/apex.inputs.video.graphql +9 -0
  105. package/src/files/graphql/server/apex.types.files.graphql +4 -0
  106. package/src/files/graphql/server/shared.inputs.image.graphql +9 -0
  107. package/src/files/graphql/server/shared.types.files.graphql +15 -0
  108. package/src/files/graphql/server/shared.types.image.graphql +9 -0
  109. package/src/files/graphql/server/shared.types.video.graphql +9 -0
  110. package/src/files/models/files.ts +113 -0
  111. package/src/files/models/gallery.ts +11 -0
  112. package/src/files/models/image.ts +159 -0
  113. package/src/files/models/video.ts +166 -0
  114. package/src/form.ts +52 -0
  115. package/src/index.ts +98 -0
  116. package/src/list.ts +34 -0
  117. package/src/mailing/graphql/client/query.get.mailing.gql +24 -0
  118. package/src/mailing/graphql/client/query.list.mailing.gql +23 -0
  119. package/src/mailing/graphql/server/apex.types.mailing.graphql +13 -0
  120. package/src/mailing/models/mailing.ts +123 -0
  121. package/src/misc/graphql/client/apex.mutations.delete.gql +0 -0
  122. package/src/misc/graphql/client/apex.mutations.upsert.gql +0 -0
  123. package/src/misc/graphql/client/apex.queries.login.gql +0 -0
  124. package/src/misc/graphql/client/query.get.disciplines.gql +17 -0
  125. package/src/misc/graphql/client/query.get.tags.gql +13 -0
  126. package/src/misc/graphql/client/query.list.disciplines.gql +23 -0
  127. package/src/misc/graphql/client/query.list.tags.gql +23 -0
  128. package/src/misc/graphql/server/apex.inputs.misc.graphql +13 -0
  129. package/src/misc/graphql/server/apex.inputs.socials.graphql +12 -0
  130. package/src/misc/graphql/server/apex.mutations.graphql +23 -0
  131. package/src/misc/graphql/server/apex.queries.graphql +36 -0
  132. package/src/misc/graphql/server/apex.types.disciplines.graphql +4 -0
  133. package/src/misc/graphql/server/apex.types.tags.graphql +4 -0
  134. package/src/misc/graphql/server/shared.enums.graphql +112 -0
  135. package/src/misc/graphql/server/shared.inputs.misc.graphql +101 -0
  136. package/src/misc/graphql/server/shared.queries.graphql +35 -0
  137. package/src/misc/graphql/server/shared.types.disciplines.graphql +8 -0
  138. package/src/misc/graphql/server/shared.types.events.graphql +39 -0
  139. package/src/misc/graphql/server/shared.types.location.graphql +17 -0
  140. package/src/misc/graphql/server/shared.types.misc.graphql +120 -0
  141. package/src/misc/graphql/server/shared.types.related.graphql +10 -0
  142. package/src/misc/graphql/server/shared.types.relatedAffiliation.graphql +7 -0
  143. package/src/misc/graphql/server/shared.types.relatedEvent.graphql +7 -0
  144. package/src/misc/graphql/server/shared.types.relatedFellowships.graphql +7 -0
  145. package/src/misc/graphql/server/shared.types.relatedNews.graphql +7 -0
  146. package/src/misc/graphql/server/shared.types.relatedPeople.graphql +6 -0
  147. package/src/misc/graphql/server/shared.types.relatedProject.graphql +7 -0
  148. package/src/misc/graphql/server/shared.types.relatedPublications.graphql +6 -0
  149. package/src/misc/graphql/server/shared.types.socials.graphql +22 -0
  150. package/src/misc/graphql/server/shared.types.tags.graphql +11 -0
  151. package/src/misc/graphql/server/website.mutations.graphql +4 -0
  152. package/src/misc/models/disciplines.ts +116 -0
  153. package/src/misc/models/location.ts +136 -0
  154. package/src/misc/models/organizers.ts +13 -0
  155. package/src/misc/models/related.ts +123 -0
  156. package/src/misc/models/relatedEvents.ts +16 -0
  157. package/src/misc/models/relatedFellowships.ts +7 -0
  158. package/src/misc/models/relatedNews.ts +13 -0
  159. package/src/misc/models/relatedPeople.ts +8 -0
  160. package/src/misc/models/relatedProject.ts +14 -0
  161. package/src/misc/models/relatedPublications.ts +14 -0
  162. package/src/misc/models/socials.ts +133 -0
  163. package/src/misc/models/sponsor.ts +13 -0
  164. package/src/misc/models/tags.ts +116 -0
  165. package/src/misc/models/taxonomy.ts +1 -0
  166. package/src/model.ts +7 -0
  167. package/src/news/graphql/client/query.get.news.gql +128 -0
  168. package/src/news/graphql/client/query.list.news.gql +35 -0
  169. package/src/news/graphql/server/share.types.news.graphql +27 -0
  170. package/src/news/models/news.ts +257 -0
  171. package/src/people/graphql/client/query.get.people.gql +173 -0
  172. package/src/people/graphql/client/query.get.users.gql +0 -0
  173. package/src/people/graphql/client/query.list.people.gql +55 -0
  174. package/src/people/graphql/client/query.list.users.gql +31 -0
  175. package/src/people/graphql/server/apex.inputs.consent.graphql +9 -0
  176. package/src/people/graphql/server/apex.inputs.groups.graphql +8 -0
  177. package/src/people/graphql/server/apex.inputs.vintage.graphql +6 -0
  178. package/src/people/graphql/server/shared.types.consent.graphql +9 -0
  179. package/src/people/graphql/server/shared.types.groups.graphql +8 -0
  180. package/src/people/graphql/server/shared.types.people.graphql +29 -0
  181. package/src/people/graphql/server/shared.types.position.graphql +6 -0
  182. package/src/people/graphql/server/shared.types.users.graphql +17 -0
  183. package/src/people/graphql/server/shared.types.vintage.graphql +6 -0
  184. package/src/people/models/consent.ts +82 -0
  185. package/src/people/models/discussants.ts +9 -0
  186. package/src/people/models/experiences.ts +38 -0
  187. package/src/people/models/fellows.ts +12 -0
  188. package/src/people/models/groups.ts +58 -0
  189. package/src/people/models/people.ts +244 -0
  190. package/src/people/models/position.ts +62 -0
  191. package/src/people/models/speakers.ts +9 -0
  192. package/src/people/models/users.ts +252 -0
  193. package/src/people/models/vintage.ts +124 -0
  194. package/src/projects/graphql/client/query.get.projects.gql +166 -0
  195. package/src/projects/graphql/client/query.list.projects.gql +33 -0
  196. package/src/projects/graphql/server/shared.types.projects.graphql +29 -0
  197. package/src/projects/models/projects.ts +249 -0
  198. package/src/publications/graphql/client/query.get.publications.gql +169 -0
  199. package/src/publications/graphql/client/query.list.publications.gql +35 -0
  200. package/src/publications/graphql/server/shared.types.publications.graphql +34 -0
  201. package/src/publications/models/article.ts +262 -0
  202. package/src/publications/models/publications.ts +306 -0
@@ -0,0 +1,946 @@
1
+ type Action {
2
+ appId: String
3
+ color: String
4
+ link: String
5
+ image: Image
6
+ name: String
7
+ video: AWSURL
8
+ slots: [String]
9
+ slug: Slug
10
+ }
11
+
12
+ type ActionList {
13
+ total: Int!
14
+ items: [Action]
15
+ }
16
+
17
+ input FellowshipDetailsInput {
18
+ type: String
19
+ fundingPeriod: String
20
+ profile: String
21
+ tasks: String
22
+ location: String
23
+ funding: String
24
+ housing: String
25
+ meals: String
26
+ applicationMaterials: String
27
+ selectionProcess: String
28
+ researchSupport: String
29
+ }
30
+
31
+ input FileInput {
32
+ name: String!
33
+ url: AWSURL!
34
+ size: Int
35
+ fileType: String
36
+ image: ImageInput
37
+ }
38
+
39
+ input VideoInput {
40
+ url: AWSURL
41
+ alt: String
42
+ caption: String
43
+ copyright: String
44
+ license: String
45
+ licenseUrl: String
46
+ backgroundColor: String
47
+ }
48
+
49
+ type FilesList {
50
+ total: Int!
51
+ items: [File]
52
+ }
53
+
54
+ type Mailing {
55
+ appId: String
56
+ name: String
57
+ description: String
58
+ createdAt: String
59
+ updatedAt: String
60
+ date: AWSDateTime
61
+ }
62
+
63
+ type MailingList {
64
+ total: Int!
65
+ items: [Mailing]
66
+ }
67
+
68
+ input SearchOptionsInput {
69
+ modules: [String!]
70
+ text: String
71
+ }
72
+
73
+ input WikipediaInput {
74
+ lang: String!
75
+ disciplines: AWSJSON
76
+ thematics: AWSJSON
77
+ types: AWSJSON
78
+ tags: AWSJSON
79
+ }
80
+
81
+ input SocialsInput {
82
+ website: AWSURL
83
+ wikipedia: AWSURL
84
+ orcid: AWSURL
85
+ linkedin: AWSURL
86
+ twitter: AWSURL
87
+ instagram: AWSURL
88
+ scholar: AWSURL
89
+ researchgate: AWSURL
90
+ mendeley: AWSURL
91
+ idRef: Int
92
+ }
93
+
94
+ type Mutation {
95
+ inviteUser(options: UserInput!): Boolean
96
+ changePassword(key: String!, password: String!, recaptcha: String!): TokenAndUser
97
+ updateUser(email: AWSEmail!, options: UpdateUserInput!): User
98
+ forgotPassword(email: AWSEmail!, recaptcha: String!): Boolean
99
+ blockUser(email: AWSEmail!): Boolean
100
+ deleteAccount: Boolean
101
+ upsertApp(options: AppInput!): Boolean
102
+ upsertEvent(appId: String, itemId: ID, options: EventInput!): Event
103
+ bookEvent(itemId: ID!, slot: SlotInput!): Boolean
104
+ createNomenclature(options: NomenclatureInput!): Nomenclature
105
+ }
106
+
107
+ type Query {
108
+ getApp(appId: ID, itemId: ID, lang: String): App
109
+ getAction(appId: ID, itemId: ID, lang: String): Action
110
+ getAffiliation(appId: ID, itemId: ID, lang: String): Affiliation
111
+ getDiscipline(appId: ID, itemId: ID, lang: String): Disciplines
112
+ getFile(appId: ID, itemId: ID, lang: String): File
113
+ getMailing(appId: ID, itemId: ID, lang: String): Mailing
114
+ getTag(appId: ID, itemId: ID, lang: String): Tag
115
+ listApps(appId: ID, options: ListInput!, lang: String): AppList
116
+ listActions(appId: ID, options: ListInput!, lang: String): ActionList
117
+ listAffiliations(appId: ID, options: ListInput!, lang: String): AffiliationList
118
+ listDisciplines(appId: ID, options: ListInput!, lang: String): DisciplinesList
119
+ listFiles(appId: ID, options: ListInput!, lang: String): FilesList
120
+ listMailing(appId: ID, options: ListInput!, lang: String): MailingList
121
+ listTags(appId: ID, options: ListInput!, lang: String): TagsList
122
+ searchOptions(appId: ID, options: SearchOptionsInput!, lang: String): Related
123
+ getPresignedUploadUrl(appId: ID, typeFile: String!): String
124
+ login(email: AWSEmail!, password: String!): Token
125
+ listUsers(appId: ID, options: ListInput!, lang: String): UserList
126
+ getUser(appId: ID, itemId: ID, lang: String, userId: ID): User
127
+ buildFiltersValues: Filters
128
+ search(appId: ID, search: String, lang: String): SearchList
129
+ getFellowship(appId: ID, itemId: ID, lang: String): Fellowship
130
+ getEvent(appId: ID, itemId: ID, lang: String): Event
131
+ getNews(appId: ID, itemId: ID, lang: String): News
132
+ getPeople(appId: ID, itemId: ID, lang: String): People
133
+ getProject(appId: ID, itemId: ID, lang: String): Project
134
+ getPublication(appId: ID, itemId: ID, lang: String): Publication
135
+ listEvents(appId: ID, options: ListInput!, lang: String): EventsList
136
+ listNews(appId: ID, options: ListInput!, lang: String): NewsList
137
+ listPeople(appId: ID, options: ListInput!, lang: String): PeopleList
138
+ listProjects(appId: ID, options: ListInput!, lang: String): ProjectsList
139
+ listPublications(appId: ID, options: ListInput!, lang: String): PublicationsList
140
+ listFellowships(appId: ID, options: ListInput!, lang: String): FellowshipList
141
+ }
142
+
143
+ schema {
144
+ query: Query
145
+ mutation: Mutation
146
+ }
147
+
148
+ type DisciplinesList {
149
+ total: Int!
150
+ items: [Disciplines]
151
+ }
152
+
153
+ type TagsList {
154
+ total: Int!
155
+ items: [Tag]
156
+ }
157
+
158
+ input ConsentInput {
159
+ data: Boolean!
160
+ record: Boolean!
161
+ diffusion: Boolean!
162
+ publication: Boolean!
163
+ email: Boolean!
164
+ newsletter: Boolean!
165
+ fellowshipnewsletter: Boolean!
166
+ }
167
+
168
+ input GroupsInput {
169
+ team: Boolean
170
+ sab: Boolean
171
+ board: Boolean
172
+ fellows: Boolean
173
+ sponsor: Boolean
174
+ vintage: [VintageInput]
175
+ }
176
+
177
+ input VintageInput {
178
+ name: String
179
+ year: Int
180
+ theme: String
181
+ url: AWSURL
182
+ }
183
+
184
+ type AffiliationList {
185
+ total: Int!
186
+ items: [Affiliation]
187
+ }
188
+
189
+ type Affiliation {
190
+ location: Location
191
+ image: Image
192
+ name: String
193
+ ror: String
194
+ url: AWSURL
195
+ appId: String
196
+ slug: AWSJSON
197
+ }
198
+
199
+ type AffiliationWithPositions {
200
+ affiliation: Affiliation
201
+ positions: [Position]
202
+ }
203
+
204
+ input EventInput {
205
+ name: String!
206
+ description: String
207
+ details: String
208
+ dateText: String
209
+ date: AWSDateTime
210
+ eventType: eventType
211
+ category: eventCategories
212
+ totalSlots: Int
213
+ availableSlots: Int
214
+ slots: [SlotInput!]
215
+ delay: AWSDateTime
216
+ place: PlaceInput
217
+ start: AWSDateTime
218
+ stop: AWSDateTime
219
+ summary: String
220
+ subtitle: String
221
+ program: String
222
+ outside: Boolean
223
+ url: AWSURL
224
+ image: ImageInput
225
+ state: eventState
226
+ bookingState: bookingState
227
+ }
228
+
229
+ type FellowshipDetails {
230
+ type: String
231
+ fundingPeriod: String
232
+ profile: String
233
+ tasks: String
234
+ location: String
235
+ funding: String
236
+ housing: String
237
+ meals: String
238
+ applicationMaterials: String
239
+ selectionProcess: String
240
+ researchSupport: String
241
+ }
242
+
243
+ type Fellowship {
244
+ appId: String
245
+ action: String
246
+ affiliations: [Affiliation]
247
+ applicationStart: String
248
+ disciplines: [Disciplines]
249
+ fellowshipStart: String
250
+ contact: String
251
+ description: String
252
+ fellowshipDetails: FellowshipDetails!
253
+ fellows: [RelatedPeople]
254
+ url: AWSURL
255
+ applicationStop: String
256
+ fellowshipStop: String
257
+ image: Image
258
+ member: [Affiliation]
259
+ related: Related
260
+ publicationDate: String
261
+ summary: String
262
+ files: [File]
263
+ fellowshipType: [FellowshipType]
264
+ status: FellowshipStatus
265
+ gallery: [Image]
266
+ name: String!
267
+ video: [Video]
268
+ slug: AWSJSON
269
+ }
270
+
271
+ type FellowshipFilters {
272
+ disciplines: [String!]
273
+ affiliations: [String!]
274
+ tags: [String!]
275
+ }
276
+
277
+ type FellowshipList {
278
+ total: Int!
279
+ items: [Fellowship]
280
+ }
281
+
282
+ input ImageInput {
283
+ url: AWSURL
284
+ alt: String
285
+ caption: String
286
+ copyright: String
287
+ license: String
288
+ licenseUrl: String
289
+ backgroundColor: String
290
+ }
291
+
292
+ type File {
293
+ appId: String
294
+ name: String!
295
+ url: AWSURL!
296
+ size: Int!
297
+ fileType: String!
298
+ hash: String!
299
+ path: String!
300
+ file: String!
301
+ image: Image
302
+ thumb: AWSURL!
303
+ createdAt: AWSDateTime!
304
+ updatedAt: AWSDateTime!
305
+ }
306
+
307
+ type Image {
308
+ url: AWSURL
309
+ alt: String
310
+ caption: String
311
+ copyright: String
312
+ license: String
313
+ licenseUrl: String
314
+ backgroundColor: String
315
+ }
316
+
317
+ type Video {
318
+ url: AWSURL
319
+ alt: String
320
+ caption: String
321
+ copyright: String
322
+ license: String
323
+ licenseUrl: String
324
+ backgroundColor: String
325
+ }
326
+
327
+ enum organiserType {
328
+ IAS
329
+ MEMBER
330
+ FELLOW
331
+ EXTERNAL
332
+ }
333
+
334
+ enum projectStatus {
335
+ PLANNED
336
+ IN_PROGRESS
337
+ FINISHED
338
+ CANCELED
339
+ }
340
+
341
+ enum publicationType {
342
+ ARTICLE
343
+ CONFERENCE_PAPER
344
+ BOOK
345
+ BOOK_CHAPTER
346
+ THESIS
347
+ REPORT
348
+ SOFTWARE
349
+ DATA
350
+ VIDEO
351
+ AUDIO
352
+ PODCAST
353
+ OTHER
354
+ }
355
+
356
+ enum newsCategories {
357
+ PRESS_RELEASE
358
+ INTERVIEW
359
+ ARTICLE
360
+ OPINION
361
+ REPORT
362
+ BLOG
363
+ LIFE_AT_THE_INSTITUTE
364
+ EVENT
365
+ ANNOUNCEMENT
366
+ JOB
367
+ FELLOWSHIP
368
+ GRANT
369
+ AWARD
370
+ PROJECT
371
+ TOOL
372
+ SOFTWARE
373
+ DATA
374
+ PUBLICATION
375
+ VIDEO
376
+ AUDIO
377
+ OTHER
378
+ }
379
+
380
+ enum eventType {
381
+ ONLINE
382
+ PHYSICAL
383
+ HYBRID
384
+ }
385
+
386
+ enum eventState {
387
+ DRAFT
388
+ PUBLISHED
389
+ REMOVED
390
+ FINISHED
391
+ CANCELLED
392
+ POSTPONED
393
+ RESCHEDULED
394
+ }
395
+
396
+ enum eventCategories {
397
+ CALL
398
+ SEMINAR
399
+ WORKSHOP
400
+ CONFERENCE
401
+ LECTURE
402
+ SYMPOSIUM
403
+ MEETING
404
+ COLLOQUIUM
405
+ FORUM
406
+ ROUND_TABLE
407
+ PANEL
408
+ WEBINAR
409
+ FELLOW_PRESENTATION
410
+ CONFERENCE_CYCLE
411
+ EXHIBITION
412
+ OTHER
413
+ }
414
+
415
+ enum appState {
416
+ ACTIVE
417
+ SUSPENDED
418
+ INACTIVE
419
+ }
420
+
421
+ enum bookingState {
422
+ OPEN
423
+ FULL
424
+ CLOSED
425
+ }
426
+
427
+ enum FellowshipStatus {
428
+ PLANNED
429
+ ONGOING
430
+ FINISHED
431
+ CANCELLED
432
+ }
433
+
434
+ enum FellowshipType {
435
+ SHORT_STAY
436
+ LONG_STAY
437
+ IN_GROUP
438
+ }
439
+
440
+ input AppInput {
441
+ name: String!
442
+ description: String
443
+ summary: String
444
+ subtitle: String
445
+ logo: String
446
+ url: AWSURL
447
+ state: appState
448
+ color: String
449
+ }
450
+
451
+ input AppRoleInput {
452
+ appId: String
453
+ roles: [Int!]!
454
+ }
455
+
456
+ input WikipediaIdsLabelInput {
457
+ ids: [String!]
458
+ label: String
459
+ }
460
+
461
+ input UserInput {
462
+ admin: Boolean
463
+ apps: [AppRoleInput!]
464
+ country: Int
465
+ email: AWSEmail!
466
+ entity: String
467
+ firstname: String!
468
+ lastname: String!
469
+ position: String
470
+ }
471
+
472
+ input UpdateUserInput {
473
+ admin: Boolean
474
+ apps: [AppRoleInput!]
475
+ profile: ProfileInput
476
+ settings: SettingsInput
477
+ status: Int
478
+ }
479
+
480
+ input SlotInput {
481
+ firstname: String!
482
+ lastname: String!
483
+ email: AWSEmail!
484
+ institution: String
485
+ lang: String!
486
+ }
487
+
488
+ input SettingsInput {
489
+ lang: String
490
+ }
491
+
492
+ input ProfileInput {
493
+ country: Int
494
+ firstname: String!
495
+ lastname: String!
496
+ position: String
497
+ image: ImageInput
498
+ references: [String]
499
+ presentation: String
500
+ twitter: String
501
+ linkedin: String
502
+ wikipedia: String
503
+ }
504
+
505
+ input PlaceInput {
506
+ name: String!
507
+ address: String
508
+ url: AWSURL
509
+ }
510
+
511
+ input NomenclatureSettingsInput {
512
+ lang: [String!]
513
+ defaultLang: String
514
+ extended: Boolean
515
+ }
516
+
517
+ input NomenclatureInput {
518
+ settings: NomenclatureSettingsInput
519
+ disciplines: WikipediaIdsLabelInput
520
+ types: WikipediaIdsLabelInput
521
+ thematics: WikipediaIdsLabelInput
522
+ tags: WikipediaIdsLabelInput
523
+ }
524
+
525
+ input ListInput {
526
+ filters: AWSJSON
527
+ limit: Int
528
+ skip: Int
529
+ sortBy: [String!]
530
+ sortDesc: [Boolean!]
531
+ search: String
532
+ }
533
+
534
+ input Entity_smInput {
535
+ name: String!
536
+ description: String
537
+ logo: String
538
+ place: PlaceInput
539
+ }
540
+
541
+ type Disciplines {
542
+ appId: String
543
+ createdAt: AWSDateTime
544
+ description: String
545
+ icon: String
546
+ name: String
547
+ updatedAt: AWSDateTime
548
+ }
549
+
550
+ type Event {
551
+ appId: String
552
+ createdBy: ID
553
+ category: eventCategories
554
+ name: String!
555
+ description: String
556
+ details: String
557
+ dateText: String
558
+ eventType: eventType
559
+ totalSlots: Int
560
+ availableSlots: Int
561
+ slots: [Slot]
562
+ delay: AWSDateTime
563
+ place: Place
564
+ start: AWSDateTime
565
+ stop: AWSDateTime
566
+ summary: String
567
+ related: Related
568
+ subtitle: String
569
+ program: String
570
+ outside: Boolean
571
+ url: AWSURL
572
+ image: Image
573
+ state: eventState
574
+ bookingState: bookingState
575
+ slug: AWSJSON
576
+ }
577
+
578
+ type EventFilters {
579
+ disciplines: [String!]
580
+ fellowships: [String!]
581
+ tags: [String!]
582
+ category: [eventCategories!]
583
+ }
584
+
585
+ type EventsList {
586
+ total: Int!
587
+ items: [Event]
588
+ }
589
+
590
+ type Location {
591
+ name: String!
592
+ details: String
593
+ alt: String
594
+ street: String
595
+ city: String
596
+ country: String
597
+ zip: Int
598
+ geocode: Geocode
599
+ }
600
+
601
+ type Geocode {
602
+ lat: Float
603
+ lng: Float
604
+ }
605
+
606
+ type App {
607
+ appId: String
608
+ name: String!
609
+ description: String
610
+ summary: String
611
+ subtitle: String
612
+ logo: Image
613
+ url: AWSURL
614
+ state: appState
615
+ tags: [Tag]
616
+ date: AWSDateTime
617
+ color: String
618
+ slug: String
619
+ }
620
+
621
+ type AppList {
622
+ total: Int!
623
+ items: [App]
624
+ }
625
+
626
+ type AppRole {
627
+ appId: String
628
+ roles: [Int!]!
629
+ }
630
+
631
+ type Entity_sm {
632
+ name: String!
633
+ description: String
634
+ logo: String
635
+ place: Place
636
+ }
637
+
638
+ type Filters {
639
+ events: EventFilters
640
+ fellowships: FellowshipFilters
641
+ news: NewsFilters
642
+ projects: ProjectFilters
643
+ people: PeopleFilters
644
+ publications: PublicationFilters
645
+ }
646
+
647
+ type Nomenclature {
648
+ version: String!
649
+ settings: NomenclatureSettings!
650
+ data: [Wikipedia!]!
651
+ }
652
+
653
+ type NomenclatureSettings {
654
+ lang: [String!]
655
+ defaultLang: String
656
+ extended: Boolean
657
+ }
658
+
659
+ type Place {
660
+ name: String!
661
+ address: String
662
+ url: AWSURL
663
+ }
664
+
665
+ type Profile {
666
+ country: Int
667
+ firstname: String!
668
+ lastname: String!
669
+ position: String
670
+ image: Image
671
+ references: [String]
672
+ presentation: String
673
+ twitter: String
674
+ linkedin: String
675
+ wikipedia: String
676
+ }
677
+
678
+ type SearchList {
679
+ news: NewsList
680
+ projects: ProjectsList
681
+ events: EventsList
682
+ people: PeopleList
683
+ publications: PublicationsList
684
+ fellowships: FellowshipList
685
+ }
686
+
687
+ type Settings {
688
+ lang: String
689
+ }
690
+
691
+ type Slot {
692
+ firstname: String!
693
+ lastname: String!
694
+ email: AWSEmail!
695
+ institution: String
696
+ lang: String!
697
+ }
698
+
699
+ type Token {
700
+ accessToken: String!
701
+ }
702
+
703
+ type TokenAndUser {
704
+ accessToken: String
705
+ user: User
706
+ }
707
+
708
+ type Related {
709
+ events: [RelatedEvent]
710
+ news: [RelatedNews]
711
+ people: [RelatedPeople]
712
+ projects: [RelatedProject]
713
+ publications: [RelatedPublication]
714
+ fellowships: [RelatedFellowship]
715
+ affiliations: [RelatedAffiliation]
716
+ }
717
+
718
+ type RelatedAffiliation {
719
+ name: String
720
+ url: AWSURL
721
+ image: Image
722
+ description: String
723
+ slug: AWSJSON
724
+ }
725
+
726
+ type RelatedEvent {
727
+ name: String
728
+ url: AWSURL
729
+ image: Image
730
+ description: String
731
+ slug: AWSJSON
732
+ }
733
+
734
+ type RelatedFellowship {
735
+ name: String
736
+ url: AWSURL
737
+ image: Image
738
+ description: String
739
+ slug: AWSJSON
740
+ }
741
+
742
+ type RelatedNews {
743
+ name: String
744
+ url: AWSURL
745
+ image: Image
746
+ description: String
747
+ slug: AWSJSON
748
+ }
749
+
750
+ type RelatedPeople {
751
+ firstname: String
752
+ lastname: String
753
+ image: Image
754
+ slug: AWSJSON
755
+ }
756
+
757
+ type RelatedProject {
758
+ name: String
759
+ url: AWSURL
760
+ image: Image
761
+ description: String
762
+ slug: AWSJSON
763
+ }
764
+
765
+ type RelatedPublication {
766
+ name: String!
767
+ url: AWSURL!
768
+ slug: AWSJSON
769
+ }
770
+
771
+ type Socials {
772
+ website: AWSURL
773
+ wikipedia: AWSURL
774
+ orcid: AWSURL
775
+ linkedin: AWSURL
776
+ twitter: AWSURL
777
+ instagram: AWSURL
778
+ scholar: AWSURL
779
+ researchgate: AWSURL
780
+ mendeley: AWSURL
781
+ idRef: Int
782
+ }
783
+
784
+ type Wikipedia {
785
+ lang: String!
786
+ disciplines: AWSJSON
787
+ thematics: AWSJSON
788
+ types: AWSJSON
789
+ tags: AWSJSON
790
+ }
791
+
792
+ type Tag {
793
+ name: String
794
+ description: String
795
+ icon: String
796
+ createdAt: AWSDateTime
797
+ updatedAt: AWSDateTime
798
+ appId: String
799
+ slug: AWSJSON
800
+ }
801
+
802
+ type Consent {
803
+ data: Boolean!
804
+ record: Boolean!
805
+ diffusion: Boolean!
806
+ publication: Boolean!
807
+ email: Boolean!
808
+ newsletter: Boolean!
809
+ fellowshipnewsletter: Boolean!
810
+ }
811
+
812
+ type Groups {
813
+ team: Boolean
814
+ sab: Boolean
815
+ board: Boolean
816
+ fellows: Boolean
817
+ sponsor: Boolean
818
+ vintage: [Vintage]
819
+ }
820
+
821
+ type People {
822
+ appId: String
823
+ firstname: String!
824
+ lastname: String!
825
+ affiliations: [AffiliationWithPositions]
826
+ image: Image
827
+ socials: Socials
828
+ biography: String
829
+ consent: Consent!
830
+ summary: String
831
+ groups: Groups!
832
+ disciplines: [Disciplines]
833
+ related: Related
834
+ video: [Video]
835
+ slug: AWSJSON
836
+ tags: [Tag]
837
+ }
838
+
839
+ type PeopleFilters {
840
+ disciplines: [String]
841
+ vintage: [String]
842
+ fellowships: [String]
843
+ members: [String]
844
+ }
845
+
846
+ type PeopleList {
847
+ total: Int!
848
+ items: [People]
849
+ }
850
+
851
+ type Position {
852
+ role: String!
853
+ department: String
854
+ start: AWSDateTime
855
+ stop: AWSDateTime
856
+ }
857
+
858
+ type User {
859
+ admin: Boolean
860
+ apps: [AppRole]
861
+ createdAt: AWSDateTime!
862
+ email: AWSEmail!
863
+ profile: Profile
864
+ settings: Settings
865
+ status: Int
866
+ role: Int
867
+ branch: [String]
868
+ slug: AWSJSON
869
+ }
870
+
871
+ type UserList {
872
+ total: Int!
873
+ items: [User!]!
874
+ }
875
+
876
+ type Vintage {
877
+ name: String
878
+ year: Int
879
+ theme: String
880
+ url: AWSURL
881
+ }
882
+
883
+ type Project {
884
+ appId: String
885
+ name: String!
886
+ subtitle: String
887
+ summary: String
888
+ description: String
889
+ url: AWSURL
890
+ affiliations: [Affiliation]
891
+ related: Related
892
+ gallery: [Image]
893
+ image: Image
894
+ video: [Video]
895
+ tags: [Tag]
896
+ files: [File]
897
+ color: String
898
+ date: AWSDateTime
899
+ featured: AWSDateTime
900
+ status: projectStatus
901
+ slug: AWSJSON
902
+ }
903
+
904
+ type ProjectFilters {
905
+ tags: [String!]
906
+ }
907
+
908
+ type ProjectsList {
909
+ total: Int!
910
+ items: [Project]
911
+ }
912
+
913
+ type Publication {
914
+ appId: String
915
+ name: String!
916
+ subtitle: String
917
+ description: String
918
+ summary: String
919
+ type: publicationType
920
+ url: AWSURL
921
+ affiliations: [Affiliation]
922
+ related: Related
923
+ gallery: [Image]
924
+ image: Image
925
+ video: Video
926
+ tags: [Tag]
927
+ files: [File]
928
+ eventCategory: eventCategories
929
+ disciplines: [Disciplines]
930
+ color: String
931
+ date: AWSDateTime
932
+ slug: AWSJSON
933
+ }
934
+
935
+ type PublicationFilters {
936
+ affiliations: [String!]
937
+ tags: [String!]
938
+ disciplines: [String!]
939
+ type: [publicationType!]
940
+ eventCategory: [eventCategories!]
941
+ }
942
+
943
+ type PublicationsList {
944
+ total: Int!
945
+ items: [Publication]
946
+ }