@paris-ias/trees 2.0.9 → 2.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/graphql/client/events/query.get.events.gql +0 -5
- package/dist/graphql/client/fellowships/query.get.fellowships.gql +0 -2
- package/dist/graphql/client/news/query.get.news.gql +0 -4
- package/dist/graphql/client/people/query.get.people.gql +0 -4
- package/dist/graphql/schemas/schema.apex.graphql +40 -40
- package/dist/graphql/schemas/schema.website.graphql +40 -40
- package/package.json +1 -1
|
@@ -20,7 +20,6 @@ query getEvent($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
20
20
|
name
|
|
21
21
|
place {
|
|
22
22
|
address
|
|
23
|
-
id
|
|
24
23
|
name
|
|
25
24
|
url
|
|
26
25
|
}
|
|
@@ -60,7 +59,6 @@ query getEvent($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
60
59
|
}
|
|
61
60
|
news {
|
|
62
61
|
description
|
|
63
|
-
id
|
|
64
62
|
slug
|
|
65
63
|
image {
|
|
66
64
|
alt
|
|
@@ -76,7 +74,6 @@ query getEvent($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
76
74
|
}
|
|
77
75
|
people {
|
|
78
76
|
firstname
|
|
79
|
-
id
|
|
80
77
|
slug
|
|
81
78
|
image {
|
|
82
79
|
alt
|
|
@@ -91,7 +88,6 @@ query getEvent($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
91
88
|
}
|
|
92
89
|
projects {
|
|
93
90
|
description
|
|
94
|
-
id
|
|
95
91
|
slug
|
|
96
92
|
image {
|
|
97
93
|
alt
|
|
@@ -106,7 +102,6 @@ query getEvent($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
106
102
|
url
|
|
107
103
|
}
|
|
108
104
|
publications {
|
|
109
|
-
id
|
|
110
105
|
slug
|
|
111
106
|
name
|
|
112
107
|
url
|
|
@@ -73,7 +73,6 @@ query getNews($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
73
73
|
}
|
|
74
74
|
news {
|
|
75
75
|
description
|
|
76
|
-
id
|
|
77
76
|
image {
|
|
78
77
|
alt
|
|
79
78
|
backgroundColor
|
|
@@ -88,7 +87,6 @@ query getNews($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
88
87
|
}
|
|
89
88
|
people {
|
|
90
89
|
firstname
|
|
91
|
-
id
|
|
92
90
|
image {
|
|
93
91
|
alt
|
|
94
92
|
backgroundColor
|
|
@@ -102,7 +100,6 @@ query getNews($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
102
100
|
}
|
|
103
101
|
projects {
|
|
104
102
|
description
|
|
105
|
-
id
|
|
106
103
|
name
|
|
107
104
|
image {
|
|
108
105
|
alt
|
|
@@ -116,7 +113,6 @@ query getNews($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
116
113
|
url
|
|
117
114
|
}
|
|
118
115
|
publications {
|
|
119
|
-
id
|
|
120
116
|
name
|
|
121
117
|
url
|
|
122
118
|
}
|
|
@@ -118,7 +118,6 @@ query getPeople($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
118
118
|
news {
|
|
119
119
|
description
|
|
120
120
|
slug
|
|
121
|
-
id
|
|
122
121
|
image {
|
|
123
122
|
alt
|
|
124
123
|
backgroundColor
|
|
@@ -134,7 +133,6 @@ query getPeople($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
134
133
|
people {
|
|
135
134
|
firstname
|
|
136
135
|
slug
|
|
137
|
-
id
|
|
138
136
|
image {
|
|
139
137
|
alt
|
|
140
138
|
backgroundColor
|
|
@@ -149,7 +147,6 @@ query getPeople($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
149
147
|
projects {
|
|
150
148
|
description
|
|
151
149
|
slug
|
|
152
|
-
id
|
|
153
150
|
image {
|
|
154
151
|
alt
|
|
155
152
|
backgroundColor
|
|
@@ -163,7 +160,6 @@ query getPeople($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
163
160
|
url
|
|
164
161
|
}
|
|
165
162
|
publications {
|
|
166
|
-
id
|
|
167
163
|
slug
|
|
168
164
|
name
|
|
169
165
|
url
|
|
@@ -226,6 +226,46 @@ input EventInput {
|
|
|
226
226
|
bookingState: bookingState
|
|
227
227
|
}
|
|
228
228
|
|
|
229
|
+
type Event {
|
|
230
|
+
appId: String
|
|
231
|
+
createdBy: ID
|
|
232
|
+
category: eventCategories
|
|
233
|
+
name: String!
|
|
234
|
+
description: String
|
|
235
|
+
details: String
|
|
236
|
+
dateText: String
|
|
237
|
+
eventType: eventType
|
|
238
|
+
totalSlots: Int
|
|
239
|
+
availableSlots: Int
|
|
240
|
+
slots: [Slot]
|
|
241
|
+
delay: AWSDateTime
|
|
242
|
+
place: Place
|
|
243
|
+
start: AWSDateTime
|
|
244
|
+
stop: AWSDateTime
|
|
245
|
+
summary: String
|
|
246
|
+
related: Related
|
|
247
|
+
subtitle: String
|
|
248
|
+
program: String
|
|
249
|
+
outside: Boolean
|
|
250
|
+
url: AWSURL
|
|
251
|
+
image: Image
|
|
252
|
+
state: eventState
|
|
253
|
+
bookingState: bookingState
|
|
254
|
+
slug: AWSJSON
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
type EventFilters {
|
|
258
|
+
disciplines: [String!]
|
|
259
|
+
fellowships: [String!]
|
|
260
|
+
tags: [String!]
|
|
261
|
+
category: [eventCategories!]
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
type EventsList {
|
|
265
|
+
total: Int!
|
|
266
|
+
items: [Event]
|
|
267
|
+
}
|
|
268
|
+
|
|
229
269
|
type FellowshipDetails {
|
|
230
270
|
type: String
|
|
231
271
|
fundingPeriod: String
|
|
@@ -547,46 +587,6 @@ type Disciplines {
|
|
|
547
587
|
updatedAt: AWSDateTime
|
|
548
588
|
}
|
|
549
589
|
|
|
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
590
|
type Location {
|
|
591
591
|
name: String!
|
|
592
592
|
details: String
|
|
@@ -63,6 +63,46 @@ input EventInput {
|
|
|
63
63
|
bookingState: bookingState
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
+
type Event {
|
|
67
|
+
appId: String
|
|
68
|
+
createdBy: ID
|
|
69
|
+
category: eventCategories
|
|
70
|
+
name: String!
|
|
71
|
+
description: String
|
|
72
|
+
details: String
|
|
73
|
+
dateText: String
|
|
74
|
+
eventType: eventType
|
|
75
|
+
totalSlots: Int
|
|
76
|
+
availableSlots: Int
|
|
77
|
+
slots: [Slot]
|
|
78
|
+
delay: AWSDateTime
|
|
79
|
+
place: Place
|
|
80
|
+
start: AWSDateTime
|
|
81
|
+
stop: AWSDateTime
|
|
82
|
+
summary: String
|
|
83
|
+
related: Related
|
|
84
|
+
subtitle: String
|
|
85
|
+
program: String
|
|
86
|
+
outside: Boolean
|
|
87
|
+
url: AWSURL
|
|
88
|
+
image: Image
|
|
89
|
+
state: eventState
|
|
90
|
+
bookingState: bookingState
|
|
91
|
+
slug: AWSJSON
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
type EventFilters {
|
|
95
|
+
disciplines: [String!]
|
|
96
|
+
fellowships: [String!]
|
|
97
|
+
tags: [String!]
|
|
98
|
+
category: [eventCategories!]
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
type EventsList {
|
|
102
|
+
total: Int!
|
|
103
|
+
items: [Event]
|
|
104
|
+
}
|
|
105
|
+
|
|
66
106
|
type FellowshipDetails {
|
|
67
107
|
type: String
|
|
68
108
|
fundingPeriod: String
|
|
@@ -410,46 +450,6 @@ type Disciplines {
|
|
|
410
450
|
updatedAt: AWSDateTime
|
|
411
451
|
}
|
|
412
452
|
|
|
413
|
-
type Event {
|
|
414
|
-
appId: String
|
|
415
|
-
createdBy: ID
|
|
416
|
-
category: eventCategories
|
|
417
|
-
name: String!
|
|
418
|
-
description: String
|
|
419
|
-
details: String
|
|
420
|
-
dateText: String
|
|
421
|
-
eventType: eventType
|
|
422
|
-
totalSlots: Int
|
|
423
|
-
availableSlots: Int
|
|
424
|
-
slots: [Slot]
|
|
425
|
-
delay: AWSDateTime
|
|
426
|
-
place: Place
|
|
427
|
-
start: AWSDateTime
|
|
428
|
-
stop: AWSDateTime
|
|
429
|
-
summary: String
|
|
430
|
-
related: Related
|
|
431
|
-
subtitle: String
|
|
432
|
-
program: String
|
|
433
|
-
outside: Boolean
|
|
434
|
-
url: AWSURL
|
|
435
|
-
image: Image
|
|
436
|
-
state: eventState
|
|
437
|
-
bookingState: bookingState
|
|
438
|
-
slug: AWSJSON
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
type EventFilters {
|
|
442
|
-
disciplines: [String!]
|
|
443
|
-
fellowships: [String!]
|
|
444
|
-
tags: [String!]
|
|
445
|
-
category: [eventCategories!]
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
type EventsList {
|
|
449
|
-
total: Int!
|
|
450
|
-
items: [Event]
|
|
451
|
-
}
|
|
452
|
-
|
|
453
453
|
type Location {
|
|
454
454
|
name: String!
|
|
455
455
|
details: String
|