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