@paris-ias/trees 2.2.8 → 2.2.10

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,23 @@ 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
+ start
45
+ stop
46
+ }
47
+ ... on Position {
48
+ role
49
+ department
50
+ start
51
+ stop
52
+ }
53
+ }
54
+ disciplines
38
55
  biography
39
56
  firstname
40
57
  groups {
@@ -84,13 +101,6 @@ query getPeople($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
84
101
  }
85
102
  slug
86
103
  appId
87
- disciplines {
88
- createdAt
89
- description
90
- icon
91
- name
92
- updatedAt
93
- }
94
104
  related {
95
105
  events {
96
106
  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
  }
@@ -56,6 +54,8 @@ query listPeople(
56
54
  theme
57
55
  url
58
56
  year
57
+ start
58
+ stop
59
59
  }
60
60
  ... on Position {
61
61
  role
@@ -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.10",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",