@paris-ias/trees 2.0.4 → 2.0.6

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.
@@ -0,0 +1,133 @@
1
+ query search($appId: ID = "", $search: String = "", $lang: String = "en") {
2
+ search(appId: $appId, search: $search, lang: $lang) {
3
+ people {
4
+ items {
5
+ firstname
6
+ id
7
+ image {
8
+ alt
9
+ backgroundColor
10
+ caption
11
+ copyright
12
+ license
13
+ licenseUrl
14
+ url
15
+ }
16
+ lastname
17
+ slug
18
+ }
19
+ total
20
+ }
21
+ projects {
22
+ items {
23
+ date
24
+ id
25
+ featured
26
+ name
27
+ image {
28
+ alt
29
+ backgroundColor
30
+ caption
31
+ copyright
32
+ license
33
+ licenseUrl
34
+ url
35
+ }
36
+ subtitle
37
+ tags {
38
+ name
39
+ }
40
+ slug
41
+ }
42
+ total
43
+ }
44
+ publications {
45
+ items {
46
+ subtitle
47
+ name
48
+ image {
49
+ alt
50
+ backgroundColor
51
+ caption
52
+ copyright
53
+ licenseUrl
54
+ license
55
+ url
56
+ }
57
+ id
58
+ date
59
+ slug
60
+ }
61
+ total
62
+ }
63
+ events {
64
+ items {
65
+ availableSlots
66
+ bookingState
67
+ category
68
+ start
69
+ state
70
+ summary
71
+ eventType
72
+ slug
73
+ name
74
+ image {
75
+ alt
76
+ backgroundColor
77
+ caption
78
+ copyright
79
+ licenseUrl
80
+ license
81
+ url
82
+ }
83
+ }
84
+ total
85
+ }
86
+ fellowships {
87
+ total
88
+ items {
89
+ applicationStart
90
+ applicationStop
91
+ disciplines {
92
+ name
93
+ }
94
+ fellowshipStart
95
+ fellowshipType
96
+ fellowshipStop
97
+ id
98
+ image {
99
+ alt
100
+ backgroundColor
101
+ caption
102
+ copyright
103
+ license
104
+ licenseUrl
105
+ url
106
+ }
107
+ name
108
+ summary
109
+ slug
110
+ }
111
+ }
112
+ news {
113
+ total
114
+ items {
115
+ category
116
+ date
117
+ featured
118
+ id
119
+ image {
120
+ alt
121
+ backgroundColor
122
+ caption
123
+ copyright
124
+ license
125
+ licenseUrl
126
+ url
127
+ }
128
+ name
129
+ slug
130
+ }
131
+ }
132
+ }
133
+ }
@@ -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
@@ -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 implements People {
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]
@@ -730,7 +746,7 @@ type Position {
730
746
  stop: AWSDateTime
731
747
  }
732
748
 
733
- type User implements People {
749
+ type User {
734
750
  admin: Boolean
735
751
  apps: [AppRole]
736
752
  createdAt: AWSDateTime!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paris-ias/trees",
3
- "version": "2.0.4",
3
+ "version": "2.0.6",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",