@paris-ias/trees 2.2.8 → 2.2.9

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.
@@ -35,6 +35,21 @@ query getPeople($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
35
35
  stop
36
36
  }
37
37
  }
38
+ latest {
39
+ ... on Vintage {
40
+ name
41
+ theme
42
+ url
43
+ year
44
+ }
45
+ ... on Position {
46
+ role
47
+ department
48
+ start
49
+ stop
50
+ }
51
+ }
52
+ disciplines
38
53
  biography
39
54
  firstname
40
55
  groups {
@@ -84,13 +99,6 @@ query getPeople($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
84
99
  }
85
100
  slug
86
101
  appId
87
- disciplines {
88
- createdAt
89
- description
90
- icon
91
- name
92
- updatedAt
93
- }
94
102
  related {
95
103
  events {
96
104
  description
@@ -9,9 +9,7 @@ query listPeople(
9
9
  biography
10
10
  firstname
11
11
  summary
12
- disciplines {
13
- name
14
- }
12
+ disciplines
15
13
  tags {
16
14
  name
17
15
  }
@@ -208,6 +208,8 @@ input VintageInput {
208
208
  year: Int
209
209
  theme: String
210
210
  url: AWSURL
211
+ start: AWSDateTime
212
+ stop: AWSDateTime
211
213
  }
212
214
 
213
215
  type Actions {
@@ -976,7 +978,7 @@ type People {
976
978
  consent: Consent!
977
979
  summary: String
978
980
  groups: Groups!
979
- disciplines: [Disciplines]
981
+ disciplines: [String]
980
982
  related: Related
981
983
  video: [Video]
982
984
  slug: String
@@ -1025,6 +1027,8 @@ type Vintage {
1025
1027
  year: Int
1026
1028
  theme: String
1027
1029
  url: AWSURL
1030
+ start: AWSDateTime
1031
+ stop: AWSDateTime
1028
1032
  }
1029
1033
 
1030
1034
  type Project {
@@ -795,7 +795,7 @@ type People {
795
795
  consent: Consent!
796
796
  summary: String
797
797
  groups: Groups!
798
- disciplines: [Disciplines]
798
+ disciplines: [String]
799
799
  related: Related
800
800
  video: [Video]
801
801
  slug: String
@@ -844,6 +844,8 @@ type Vintage {
844
844
  year: Int
845
845
  theme: String
846
846
  url: AWSURL
847
+ start: AWSDateTime
848
+ stop: AWSDateTime
847
849
  }
848
850
 
849
851
  type Project {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paris-ias/trees",
3
- "version": "2.2.8",
3
+ "version": "2.2.9",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",