@paris-ias/trees 2.0.31 → 2.0.33
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/affiliations/query.get.affiliations.gql +1 -0
- package/dist/graphql/client/affiliations/query.list.affiliations.gql +1 -0
- package/dist/graphql/client/events/query.get.events.gql +0 -1
- package/dist/graphql/client/events/query.list.events.gql +8 -3
- package/dist/graphql/client/projects/query.get.projects.gql +8 -4
- package/dist/graphql/schemas/schema.apex.graphql +8 -2
- package/dist/graphql/schemas/schema.website.graphql +8 -2
- package/package.json +1 -1
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
query getProject(
|
|
1
|
+
query getProject(
|
|
2
|
+
$appId: ID = "iea"
|
|
3
|
+
$itemId: ID = "proceedings-of-institutes-for-advanced-study"
|
|
4
|
+
$lang: String = "en"
|
|
5
|
+
) {
|
|
2
6
|
getProject(appId: $appId, itemId: $itemId, lang: $lang) {
|
|
3
7
|
color
|
|
4
8
|
date
|
|
@@ -47,13 +51,13 @@ query getProject($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
47
51
|
city
|
|
48
52
|
country
|
|
49
53
|
details
|
|
50
|
-
name
|
|
51
|
-
street
|
|
52
|
-
zip
|
|
53
54
|
geocode {
|
|
54
55
|
lat
|
|
55
56
|
lng
|
|
56
57
|
}
|
|
58
|
+
name
|
|
59
|
+
street
|
|
60
|
+
zip
|
|
57
61
|
}
|
|
58
62
|
image {
|
|
59
63
|
alt
|
|
@@ -227,6 +227,13 @@ type ActionList {
|
|
|
227
227
|
items: [Actions]
|
|
228
228
|
}
|
|
229
229
|
|
|
230
|
+
enum affiliationCategory {
|
|
231
|
+
MEMBER
|
|
232
|
+
PARTNER
|
|
233
|
+
SPONSOR
|
|
234
|
+
OTHER
|
|
235
|
+
}
|
|
236
|
+
|
|
230
237
|
type AffiliationList {
|
|
231
238
|
total: Int!
|
|
232
239
|
items: [Affiliation]
|
|
@@ -241,6 +248,7 @@ type Affiliation {
|
|
|
241
248
|
appId: String
|
|
242
249
|
slug: AWSJSON
|
|
243
250
|
score: Float
|
|
251
|
+
category: [affiliationCategory]
|
|
244
252
|
}
|
|
245
253
|
|
|
246
254
|
type AffiliationWithPositions {
|
|
@@ -288,7 +296,6 @@ input EventInput {
|
|
|
288
296
|
location: LocationInput
|
|
289
297
|
name: String!
|
|
290
298
|
outside: Boolean
|
|
291
|
-
place: String
|
|
292
299
|
program: String
|
|
293
300
|
slots: [SlotInput!]
|
|
294
301
|
start: AWSDateTime
|
|
@@ -315,7 +322,6 @@ type Event {
|
|
|
315
322
|
location: Location
|
|
316
323
|
name: String!
|
|
317
324
|
outside: Boolean
|
|
318
|
-
place: String
|
|
319
325
|
program: String
|
|
320
326
|
related: Related
|
|
321
327
|
score: Float
|
|
@@ -21,6 +21,13 @@ type ActionList {
|
|
|
21
21
|
items: [Actions]
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
enum affiliationCategory {
|
|
25
|
+
MEMBER
|
|
26
|
+
PARTNER
|
|
27
|
+
SPONSOR
|
|
28
|
+
OTHER
|
|
29
|
+
}
|
|
30
|
+
|
|
24
31
|
type AffiliationList {
|
|
25
32
|
total: Int!
|
|
26
33
|
items: [Affiliation]
|
|
@@ -35,6 +42,7 @@ type Affiliation {
|
|
|
35
42
|
appId: String
|
|
36
43
|
slug: AWSJSON
|
|
37
44
|
score: Float
|
|
45
|
+
category: [affiliationCategory]
|
|
38
46
|
}
|
|
39
47
|
|
|
40
48
|
type AffiliationWithPositions {
|
|
@@ -82,7 +90,6 @@ input EventInput {
|
|
|
82
90
|
location: LocationInput
|
|
83
91
|
name: String!
|
|
84
92
|
outside: Boolean
|
|
85
|
-
place: String
|
|
86
93
|
program: String
|
|
87
94
|
slots: [SlotInput!]
|
|
88
95
|
start: AWSDateTime
|
|
@@ -109,7 +116,6 @@ type Event {
|
|
|
109
116
|
location: Location
|
|
110
117
|
name: String!
|
|
111
118
|
outside: Boolean
|
|
112
|
-
place: String
|
|
113
119
|
program: String
|
|
114
120
|
related: Related
|
|
115
121
|
score: Float
|