@paris-ias/trees 2.0.3 → 2.0.5
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.
|
@@ -1,19 +1,3 @@
|
|
|
1
|
-
type Actions {
|
|
2
|
-
appId: String
|
|
3
|
-
color: String
|
|
4
|
-
link: String
|
|
5
|
-
image: Image
|
|
6
|
-
name: String
|
|
7
|
-
video: AWSURL
|
|
8
|
-
slots: [String]
|
|
9
|
-
slug: AWSJSON
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
type ActionList {
|
|
13
|
-
total: Int!
|
|
14
|
-
items: [Actions]
|
|
15
|
-
}
|
|
16
|
-
|
|
17
1
|
input FellowshipDetailsInput {
|
|
18
2
|
type: String
|
|
19
3
|
fundingPeriod: String
|
|
@@ -122,7 +106,7 @@ type Query {
|
|
|
122
106
|
getUser(appId: ID, itemId: ID, lang: String): User
|
|
123
107
|
search(appId: ID, search: String, lang: String): SearchList
|
|
124
108
|
getFellowship(appId: ID, itemId: ID, lang: String): Fellowship
|
|
125
|
-
getAction(appId: ID, itemId: ID, lang: String):
|
|
109
|
+
getAction(appId: ID, itemId: ID, lang: String): Actions
|
|
126
110
|
getEvent(appId: ID, itemId: ID, lang: String): Event
|
|
127
111
|
getNews(appId: ID, itemId: ID, lang: String): News
|
|
128
112
|
getPeople(appId: ID, itemId: ID, lang: String): People
|
|
@@ -181,6 +165,22 @@ input VintageInput {
|
|
|
181
165
|
url: AWSURL
|
|
182
166
|
}
|
|
183
167
|
|
|
168
|
+
type Actions {
|
|
169
|
+
appId: String
|
|
170
|
+
color: String
|
|
171
|
+
link: String
|
|
172
|
+
image: Image
|
|
173
|
+
name: String
|
|
174
|
+
video: AWSURL
|
|
175
|
+
slots: [String]
|
|
176
|
+
slug: AWSJSON
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
type ActionList {
|
|
180
|
+
total: Int!
|
|
181
|
+
items: [Actions]
|
|
182
|
+
}
|
|
183
|
+
|
|
184
184
|
type AffiliationList {
|
|
185
185
|
total: Int!
|
|
186
186
|
items: [Affiliation]
|
|
@@ -883,7 +883,7 @@ type Position {
|
|
|
883
883
|
stop: AWSDateTime
|
|
884
884
|
}
|
|
885
885
|
|
|
886
|
-
type User
|
|
886
|
+
type User {
|
|
887
887
|
admin: Boolean
|
|
888
888
|
apps: [AppRole]
|
|
889
889
|
createdAt: AWSDateTime!
|
|
@@ -2,6 +2,22 @@ type Mutation {
|
|
|
2
2
|
bookEvent(itemId: ID!, slot: SlotInput!): Boolean
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
+
type Actions {
|
|
6
|
+
appId: String
|
|
7
|
+
color: String
|
|
8
|
+
link: String
|
|
9
|
+
image: Image
|
|
10
|
+
name: String
|
|
11
|
+
video: AWSURL
|
|
12
|
+
slots: [String]
|
|
13
|
+
slug: AWSJSON
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
type ActionList {
|
|
17
|
+
total: Int!
|
|
18
|
+
items: [Actions]
|
|
19
|
+
}
|
|
20
|
+
|
|
5
21
|
type AffiliationList {
|
|
6
22
|
total: Int!
|
|
7
23
|
items: [Affiliation]
|
|
@@ -362,7 +378,7 @@ input Entity_smInput {
|
|
|
362
378
|
type Query {
|
|
363
379
|
search(appId: ID, search: String, lang: String): SearchList
|
|
364
380
|
getFellowship(appId: ID, itemId: ID, lang: String): Fellowship
|
|
365
|
-
getAction(appId: ID, itemId: ID, lang: String):
|
|
381
|
+
getAction(appId: ID, itemId: ID, lang: String): Actions
|
|
366
382
|
getEvent(appId: ID, itemId: ID, lang: String): Event
|
|
367
383
|
getNews(appId: ID, itemId: ID, lang: String): News
|
|
368
384
|
getPeople(appId: ID, itemId: ID, lang: String): People
|
|
@@ -730,7 +746,7 @@ type Position {
|
|
|
730
746
|
stop: AWSDateTime
|
|
731
747
|
}
|
|
732
748
|
|
|
733
|
-
type User
|
|
749
|
+
type User {
|
|
734
750
|
admin: Boolean
|
|
735
751
|
apps: [AppRole]
|
|
736
752
|
createdAt: AWSDateTime!
|