@paris-ias/list 1.0.142 → 1.0.144
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/module.json +1 -1
- package/dist/runtime/plugins/pinia.js +32 -31
- package/package.json +2 -2
- package/dist/runtime/graphql/buildFiltersValues.gql +0 -35
- package/dist/runtime/graphql/item/action.gql +0 -22
- package/dist/runtime/graphql/item/affiliations.gql +0 -37
- package/dist/runtime/graphql/item/apps.gql +0 -34
- package/dist/runtime/graphql/item/disciplines.gql +0 -17
- package/dist/runtime/graphql/item/events.gql +0 -120
- package/dist/runtime/graphql/item/fellowships.gql +0 -164
- package/dist/runtime/graphql/item/files.gql +0 -25
- package/dist/runtime/graphql/item/mailing.gql +0 -10
- package/dist/runtime/graphql/item/news.gql +0 -129
- package/dist/runtime/graphql/item/people.gql +0 -174
- package/dist/runtime/graphql/item/projects.gql +0 -171
- package/dist/runtime/graphql/item/publications.gql +0 -169
- package/dist/runtime/graphql/item/tags.gql +0 -13
- package/dist/runtime/graphql/item/users.gql +0 -14
- package/dist/runtime/graphql/list/action.gql +0 -31
- package/dist/runtime/graphql/list/affiliations.gql +0 -42
- package/dist/runtime/graphql/list/apps.gql +0 -42
- package/dist/runtime/graphql/list/disciplines.gql +0 -22
- package/dist/runtime/graphql/list/events.gql +0 -44
- package/dist/runtime/graphql/list/fellowships.gql +0 -53
- package/dist/runtime/graphql/list/files.gql +0 -37
- package/dist/runtime/graphql/list/mailing.gql +0 -22
- package/dist/runtime/graphql/list/news.gql +0 -40
- package/dist/runtime/graphql/list/people.gql +0 -56
- package/dist/runtime/graphql/list/projects.gql +0 -37
- package/dist/runtime/graphql/list/publications.gql +0 -37
- package/dist/runtime/graphql/list/search.gql +0 -161
- package/dist/runtime/graphql/list/tags.gql +0 -22
- package/dist/runtime/graphql/list/users.gql +0 -38
- package/dist/runtime/graphql/login.gql +0 -0
package/dist/module.json
CHANGED
|
@@ -7,99 +7,100 @@ export default defineNuxtPlugin(async (nuxtApp) => {
|
|
|
7
7
|
events: () => ({
|
|
8
8
|
model: import("@paris-ias/data/dist/list/events.js"),
|
|
9
9
|
queries: {
|
|
10
|
-
list: import("
|
|
11
|
-
get: import("
|
|
10
|
+
list: import("@paris-ias/data/dist/graphql/client/events/query.list.events.gql"),
|
|
11
|
+
get: import("@paris-ias/data/dist/graphql/client/events/query.get.events.gql")
|
|
12
12
|
}
|
|
13
13
|
}),
|
|
14
14
|
news: () => ({
|
|
15
15
|
model: import("@paris-ias/data/dist/list/news.js"),
|
|
16
16
|
queries: {
|
|
17
|
-
list: import("
|
|
18
|
-
get: import("
|
|
17
|
+
list: import("@paris-ias/data/dist/graphql/client/news/query.list.news.gql"),
|
|
18
|
+
get: import("@paris-ias/data/dist/graphql/client/news/query.get.news.gql")
|
|
19
19
|
}
|
|
20
20
|
}),
|
|
21
21
|
people: () => ({
|
|
22
22
|
model: import("@paris-ias/data/dist/list/people.js"),
|
|
23
23
|
queries: {
|
|
24
|
-
list: import("
|
|
25
|
-
get: import("
|
|
24
|
+
list: import("@paris-ias/data/dist/graphql/client/people/query.list.people.gql"),
|
|
25
|
+
get: import("@paris-ias/data/dist/graphql/client/people/query.get.people.gql")
|
|
26
26
|
}
|
|
27
27
|
}),
|
|
28
28
|
projects: () => ({
|
|
29
29
|
model: import("@paris-ias/data/dist/list/projects.js"),
|
|
30
30
|
queries: {
|
|
31
|
-
list: import("
|
|
32
|
-
get: import("
|
|
31
|
+
list: import("@paris-ias/data/dist/graphql/client/projects/query.list.projects.gql"),
|
|
32
|
+
get: import("@paris-ias/data/dist/graphql/client/projects/query.get.projects.gql")
|
|
33
33
|
}
|
|
34
34
|
}),
|
|
35
35
|
fellowships: () => ({
|
|
36
36
|
model: import("@paris-ias/data/dist/list/fellowships.js"),
|
|
37
37
|
queries: {
|
|
38
|
-
list: import("
|
|
39
|
-
get: import("
|
|
38
|
+
list: import("@paris-ias/data/dist/graphql/client/fellowships/query.list.fellowships.gql"),
|
|
39
|
+
get: import("@paris-ias/data/dist/graphql/client/fellowships/query.get.fellowships.gql")
|
|
40
40
|
}
|
|
41
41
|
}),
|
|
42
42
|
publications: () => ({
|
|
43
43
|
model: import("@paris-ias/data/dist/list/publications.js"),
|
|
44
44
|
queries: {
|
|
45
|
-
list: import("
|
|
46
|
-
get: import("
|
|
45
|
+
list: import("@paris-ias/data/dist/graphql/client/publications/query.list.publications.gql"),
|
|
46
|
+
get: import("@paris-ias/data/dist/graphql/client/publications/query.get.publications.gql")
|
|
47
47
|
}
|
|
48
48
|
}),
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
// Fixed: changed 'actions' to 'action' to match the actual module name
|
|
50
|
+
action: () => ({
|
|
51
|
+
model: import("@paris-ias/data/dist/list/actions.js"),
|
|
51
52
|
queries: {
|
|
52
|
-
list: import("
|
|
53
|
-
get: import("
|
|
53
|
+
list: import("@paris-ias/data/dist/graphql/client/action/query.list.actions.gql"),
|
|
54
|
+
get: import("@paris-ias/data/dist/graphql/client/action/query.get.actions.gql")
|
|
54
55
|
}
|
|
55
56
|
}),
|
|
56
57
|
affiliation: () => ({
|
|
57
|
-
model: import("@paris-ias/data/dist/list/
|
|
58
|
+
model: import("@paris-ias/data/dist/list/affiliations.js"),
|
|
58
59
|
queries: {
|
|
59
|
-
list: import("
|
|
60
|
-
get: import("
|
|
60
|
+
list: import("@paris-ias/data/dist/graphql/client/affiliation/query.list.affiliations.gql"),
|
|
61
|
+
get: import("@paris-ias/data/dist/graphql/client/affiliation/query.get.affiliations.gql")
|
|
61
62
|
}
|
|
62
63
|
}),
|
|
63
64
|
disciplines: () => ({
|
|
64
65
|
model: import("@paris-ias/data/dist/list/disciplines.js"),
|
|
65
66
|
queries: {
|
|
66
|
-
list: import("
|
|
67
|
-
get: import("
|
|
67
|
+
list: import("@paris-ias/data/dist/graphql/client/misc/query.list.disciplines.gql"),
|
|
68
|
+
get: import("@paris-ias/data/dist/graphql/client/misc/query.get.disciplines.gql")
|
|
68
69
|
}
|
|
69
70
|
}),
|
|
70
71
|
files: () => ({
|
|
71
72
|
model: import("@paris-ias/data/dist/list/files.js"),
|
|
72
73
|
queries: {
|
|
73
|
-
list: import("
|
|
74
|
-
get: import("
|
|
74
|
+
list: import("@paris-ias/data/dist/graphql/client/files/query.list.files.gql"),
|
|
75
|
+
get: import("@paris-ias/data/dist/graphql/client/files/query.get.files.gql")
|
|
75
76
|
}
|
|
76
77
|
}),
|
|
77
78
|
mailing: () => ({
|
|
78
79
|
model: import("@paris-ias/data/dist/list/mailing.js"),
|
|
79
80
|
queries: {
|
|
80
|
-
list: import("
|
|
81
|
-
get: import("
|
|
81
|
+
list: import("@paris-ias/data/dist/graphql/client/mailing/query.list.mailing.gql"),
|
|
82
|
+
get: import("@paris-ias/data/dist/graphql/client/mailing/query.get.mailing.gql")
|
|
82
83
|
}
|
|
83
84
|
}),
|
|
84
85
|
tags: () => ({
|
|
85
86
|
model: import("@paris-ias/data/dist/list/tags.js"),
|
|
86
87
|
queries: {
|
|
87
|
-
list: import("
|
|
88
|
-
get: import("
|
|
88
|
+
list: import("@paris-ias/data/dist/graphql/client/misc/query.list.tags.gql"),
|
|
89
|
+
get: import("@paris-ias/data/dist/graphql/client/misc/query.get.tags.gql")
|
|
89
90
|
}
|
|
90
91
|
}),
|
|
91
92
|
apps: () => ({
|
|
92
93
|
model: import("@paris-ias/data/dist/list/apps.js"),
|
|
93
94
|
queries: {
|
|
94
|
-
list: import("
|
|
95
|
-
get: import("
|
|
95
|
+
list: import("@paris-ias/data/dist/graphql/client/apps/query.list.apps.gql"),
|
|
96
|
+
get: import("@paris-ias/data/dist/graphql/client/apps/query.get.apps.gql")
|
|
96
97
|
}
|
|
97
98
|
}),
|
|
98
99
|
users: () => ({
|
|
99
100
|
model: import("@paris-ias/data/dist/list/users.js"),
|
|
100
101
|
queries: {
|
|
101
|
-
list: import("
|
|
102
|
-
get: import("
|
|
102
|
+
list: import("@paris-ias/data/dist/graphql/client/people/query.list.users.gql"),
|
|
103
|
+
get: import("@paris-ias/data/dist/graphql/client/people/query.get.users.gql")
|
|
103
104
|
}
|
|
104
105
|
})
|
|
105
106
|
// Add other modules similarly...
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"license": "AGPL-3.0-only",
|
|
3
3
|
"main": "./dist/module.mjs",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.144",
|
|
5
5
|
"name": "@paris-ias/list",
|
|
6
6
|
"repository": {
|
|
7
7
|
"url": "git+https://github.com/IEA-Paris/list.git",
|
|
8
8
|
"type": "git"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@paris-ias/data": "^1.8.
|
|
11
|
+
"@paris-ias/data": "^1.8.59"
|
|
12
12
|
},
|
|
13
13
|
"description": "Paris IAS List Module",
|
|
14
14
|
"peerDependencies": {
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
query buildFiltersValues {
|
|
2
|
-
buildFiltersValues {
|
|
3
|
-
events {
|
|
4
|
-
disciplines
|
|
5
|
-
fellowships
|
|
6
|
-
tags
|
|
7
|
-
category
|
|
8
|
-
}
|
|
9
|
-
fellowships {
|
|
10
|
-
affiliations
|
|
11
|
-
disciplines
|
|
12
|
-
tags
|
|
13
|
-
}
|
|
14
|
-
news {
|
|
15
|
-
category
|
|
16
|
-
tags
|
|
17
|
-
}
|
|
18
|
-
people {
|
|
19
|
-
disciplines
|
|
20
|
-
fellowships
|
|
21
|
-
members
|
|
22
|
-
vintage
|
|
23
|
-
}
|
|
24
|
-
projects {
|
|
25
|
-
tags
|
|
26
|
-
}
|
|
27
|
-
publications {
|
|
28
|
-
affiliations
|
|
29
|
-
disciplines
|
|
30
|
-
eventCategory
|
|
31
|
-
tags
|
|
32
|
-
type
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
query getAction($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
2
|
-
getAction(appId: $appId, itemId: $itemId, lang: $lang) {
|
|
3
|
-
color
|
|
4
|
-
image {
|
|
5
|
-
alt
|
|
6
|
-
backgroundColor
|
|
7
|
-
caption
|
|
8
|
-
copyright
|
|
9
|
-
license
|
|
10
|
-
licenseUrl
|
|
11
|
-
url
|
|
12
|
-
}
|
|
13
|
-
link
|
|
14
|
-
name
|
|
15
|
-
slots
|
|
16
|
-
video
|
|
17
|
-
slug {
|
|
18
|
-
fr
|
|
19
|
-
en
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
query getAffiliation(
|
|
2
|
-
$appId: ID = "iea"
|
|
3
|
-
$itemId: ID = ""
|
|
4
|
-
$lang: String = "en"
|
|
5
|
-
) {
|
|
6
|
-
getAffiliation(appId: $appId, itemId: $itemId, lang: $lang) {
|
|
7
|
-
image {
|
|
8
|
-
alt
|
|
9
|
-
backgroundColor
|
|
10
|
-
caption
|
|
11
|
-
copyright
|
|
12
|
-
license
|
|
13
|
-
licenseUrl
|
|
14
|
-
url
|
|
15
|
-
}
|
|
16
|
-
location {
|
|
17
|
-
alt
|
|
18
|
-
city
|
|
19
|
-
country
|
|
20
|
-
details
|
|
21
|
-
geocode {
|
|
22
|
-
lat
|
|
23
|
-
lng
|
|
24
|
-
}
|
|
25
|
-
name
|
|
26
|
-
street
|
|
27
|
-
zip
|
|
28
|
-
}
|
|
29
|
-
name
|
|
30
|
-
ror
|
|
31
|
-
url
|
|
32
|
-
slug {
|
|
33
|
-
fr
|
|
34
|
-
en
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
query getApp($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
2
|
-
getApp(appId: $appId, itemId: $itemId, lang: $lang) {
|
|
3
|
-
appId
|
|
4
|
-
color
|
|
5
|
-
date
|
|
6
|
-
description
|
|
7
|
-
logo {
|
|
8
|
-
alt
|
|
9
|
-
backgroundColor
|
|
10
|
-
caption
|
|
11
|
-
copyright
|
|
12
|
-
license
|
|
13
|
-
licenseUrl
|
|
14
|
-
url
|
|
15
|
-
}
|
|
16
|
-
name
|
|
17
|
-
state
|
|
18
|
-
subtitle
|
|
19
|
-
summary
|
|
20
|
-
tags {
|
|
21
|
-
createdAt
|
|
22
|
-
description
|
|
23
|
-
icon
|
|
24
|
-
name
|
|
25
|
-
updatedAt
|
|
26
|
-
slug {
|
|
27
|
-
en
|
|
28
|
-
fr
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
url
|
|
32
|
-
slug
|
|
33
|
-
}
|
|
34
|
-
}
|
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
query getEvent($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
2
|
-
getEvent(appId: $appId, itemId: $itemId, lang: $lang) {
|
|
3
|
-
appId
|
|
4
|
-
availableSlots
|
|
5
|
-
bookingState
|
|
6
|
-
category
|
|
7
|
-
createdBy
|
|
8
|
-
dateText
|
|
9
|
-
description
|
|
10
|
-
details
|
|
11
|
-
id
|
|
12
|
-
image {
|
|
13
|
-
alt
|
|
14
|
-
caption
|
|
15
|
-
backgroundColor
|
|
16
|
-
copyright
|
|
17
|
-
license
|
|
18
|
-
licenseUrl
|
|
19
|
-
url
|
|
20
|
-
}
|
|
21
|
-
name
|
|
22
|
-
place {
|
|
23
|
-
address
|
|
24
|
-
id
|
|
25
|
-
name
|
|
26
|
-
url
|
|
27
|
-
}
|
|
28
|
-
start
|
|
29
|
-
slug {
|
|
30
|
-
fr
|
|
31
|
-
en
|
|
32
|
-
}
|
|
33
|
-
slots {
|
|
34
|
-
email
|
|
35
|
-
firstname
|
|
36
|
-
institution
|
|
37
|
-
lang
|
|
38
|
-
lastname
|
|
39
|
-
}
|
|
40
|
-
state
|
|
41
|
-
stop
|
|
42
|
-
subtitle
|
|
43
|
-
summary
|
|
44
|
-
program
|
|
45
|
-
totalSlots
|
|
46
|
-
eventType
|
|
47
|
-
outside
|
|
48
|
-
url
|
|
49
|
-
related {
|
|
50
|
-
events {
|
|
51
|
-
description
|
|
52
|
-
slug
|
|
53
|
-
image {
|
|
54
|
-
alt
|
|
55
|
-
backgroundColor
|
|
56
|
-
caption
|
|
57
|
-
copyright
|
|
58
|
-
license
|
|
59
|
-
licenseUrl
|
|
60
|
-
url
|
|
61
|
-
}
|
|
62
|
-
name
|
|
63
|
-
url
|
|
64
|
-
}
|
|
65
|
-
news {
|
|
66
|
-
description
|
|
67
|
-
id
|
|
68
|
-
slug
|
|
69
|
-
image {
|
|
70
|
-
alt
|
|
71
|
-
backgroundColor
|
|
72
|
-
caption
|
|
73
|
-
copyright
|
|
74
|
-
license
|
|
75
|
-
licenseUrl
|
|
76
|
-
url
|
|
77
|
-
}
|
|
78
|
-
name
|
|
79
|
-
url
|
|
80
|
-
}
|
|
81
|
-
people {
|
|
82
|
-
firstname
|
|
83
|
-
id
|
|
84
|
-
slug
|
|
85
|
-
image {
|
|
86
|
-
alt
|
|
87
|
-
backgroundColor
|
|
88
|
-
caption
|
|
89
|
-
license
|
|
90
|
-
copyright
|
|
91
|
-
licenseUrl
|
|
92
|
-
url
|
|
93
|
-
}
|
|
94
|
-
lastname
|
|
95
|
-
}
|
|
96
|
-
projects {
|
|
97
|
-
description
|
|
98
|
-
id
|
|
99
|
-
slug
|
|
100
|
-
image {
|
|
101
|
-
alt
|
|
102
|
-
backgroundColor
|
|
103
|
-
caption
|
|
104
|
-
copyright
|
|
105
|
-
license
|
|
106
|
-
licenseUrl
|
|
107
|
-
url
|
|
108
|
-
}
|
|
109
|
-
name
|
|
110
|
-
url
|
|
111
|
-
}
|
|
112
|
-
publications {
|
|
113
|
-
id
|
|
114
|
-
slug
|
|
115
|
-
name
|
|
116
|
-
url
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
}
|
|
@@ -1,164 +0,0 @@
|
|
|
1
|
-
query getFellowship(
|
|
2
|
-
$appId: ID = "iea"
|
|
3
|
-
$itemId: ID = ""
|
|
4
|
-
$lang: String = "en"
|
|
5
|
-
) {
|
|
6
|
-
getFellowship(appId: $appId, itemId: $itemId, lang: $lang) {
|
|
7
|
-
id
|
|
8
|
-
action
|
|
9
|
-
applicationStart
|
|
10
|
-
fellowshipStart
|
|
11
|
-
contact
|
|
12
|
-
url
|
|
13
|
-
slug {
|
|
14
|
-
fr
|
|
15
|
-
en
|
|
16
|
-
}
|
|
17
|
-
applicationStop
|
|
18
|
-
fellowshipStop
|
|
19
|
-
publicationDate
|
|
20
|
-
summary
|
|
21
|
-
description
|
|
22
|
-
fellows {
|
|
23
|
-
id
|
|
24
|
-
firstname
|
|
25
|
-
lastname
|
|
26
|
-
image {
|
|
27
|
-
alt
|
|
28
|
-
caption
|
|
29
|
-
backgroundColor
|
|
30
|
-
copyright
|
|
31
|
-
license
|
|
32
|
-
licenseUrl
|
|
33
|
-
url
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
fellowshipType
|
|
37
|
-
files {
|
|
38
|
-
createdAt
|
|
39
|
-
file
|
|
40
|
-
fileType
|
|
41
|
-
hash
|
|
42
|
-
id
|
|
43
|
-
image {
|
|
44
|
-
alt
|
|
45
|
-
caption
|
|
46
|
-
backgroundColor
|
|
47
|
-
copyright
|
|
48
|
-
license
|
|
49
|
-
licenseUrl
|
|
50
|
-
url
|
|
51
|
-
}
|
|
52
|
-
name
|
|
53
|
-
path
|
|
54
|
-
size
|
|
55
|
-
thumb
|
|
56
|
-
updatedAt
|
|
57
|
-
url
|
|
58
|
-
}
|
|
59
|
-
gallery {
|
|
60
|
-
alt
|
|
61
|
-
backgroundColor
|
|
62
|
-
caption
|
|
63
|
-
license
|
|
64
|
-
copyright
|
|
65
|
-
licenseUrl
|
|
66
|
-
url
|
|
67
|
-
}
|
|
68
|
-
image {
|
|
69
|
-
url
|
|
70
|
-
licenseUrl
|
|
71
|
-
license
|
|
72
|
-
copyright
|
|
73
|
-
caption
|
|
74
|
-
backgroundColor
|
|
75
|
-
alt
|
|
76
|
-
}
|
|
77
|
-
member {
|
|
78
|
-
name
|
|
79
|
-
ror
|
|
80
|
-
url
|
|
81
|
-
image {
|
|
82
|
-
alt
|
|
83
|
-
backgroundColor
|
|
84
|
-
caption
|
|
85
|
-
copyright
|
|
86
|
-
license
|
|
87
|
-
licenseUrl
|
|
88
|
-
url
|
|
89
|
-
}
|
|
90
|
-
location {
|
|
91
|
-
alt
|
|
92
|
-
city
|
|
93
|
-
country
|
|
94
|
-
details
|
|
95
|
-
geocode {
|
|
96
|
-
lat
|
|
97
|
-
lng
|
|
98
|
-
}
|
|
99
|
-
name
|
|
100
|
-
street
|
|
101
|
-
zip
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
name
|
|
105
|
-
video {
|
|
106
|
-
alt
|
|
107
|
-
backgroundColor
|
|
108
|
-
caption
|
|
109
|
-
copyright
|
|
110
|
-
license
|
|
111
|
-
licenseUrl
|
|
112
|
-
url
|
|
113
|
-
}
|
|
114
|
-
disciplines {
|
|
115
|
-
description
|
|
116
|
-
createdAt
|
|
117
|
-
icon
|
|
118
|
-
name
|
|
119
|
-
updatedAt
|
|
120
|
-
}
|
|
121
|
-
appId
|
|
122
|
-
affiliations {
|
|
123
|
-
image {
|
|
124
|
-
alt
|
|
125
|
-
backgroundColor
|
|
126
|
-
caption
|
|
127
|
-
copyright
|
|
128
|
-
license
|
|
129
|
-
licenseUrl
|
|
130
|
-
url
|
|
131
|
-
}
|
|
132
|
-
location {
|
|
133
|
-
alt
|
|
134
|
-
city
|
|
135
|
-
country
|
|
136
|
-
details
|
|
137
|
-
geocode {
|
|
138
|
-
lat
|
|
139
|
-
lng
|
|
140
|
-
}
|
|
141
|
-
name
|
|
142
|
-
street
|
|
143
|
-
zip
|
|
144
|
-
}
|
|
145
|
-
name
|
|
146
|
-
ror
|
|
147
|
-
url
|
|
148
|
-
}
|
|
149
|
-
fellowshipDetails {
|
|
150
|
-
applicationMaterials
|
|
151
|
-
funding
|
|
152
|
-
fundingPeriod
|
|
153
|
-
housing
|
|
154
|
-
location
|
|
155
|
-
meals
|
|
156
|
-
profile
|
|
157
|
-
researchSupport
|
|
158
|
-
selectionProcess
|
|
159
|
-
tasks
|
|
160
|
-
type
|
|
161
|
-
}
|
|
162
|
-
status
|
|
163
|
-
}
|
|
164
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
query getFile($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
2
|
-
getFile(appId: $appId, itemId: $itemId, lang: $lang) {
|
|
3
|
-
createdAt
|
|
4
|
-
file
|
|
5
|
-
fileType
|
|
6
|
-
hash
|
|
7
|
-
id
|
|
8
|
-
image {
|
|
9
|
-
alt
|
|
10
|
-
backgroundColor
|
|
11
|
-
caption
|
|
12
|
-
copyright
|
|
13
|
-
license
|
|
14
|
-
licenseUrl
|
|
15
|
-
url
|
|
16
|
-
}
|
|
17
|
-
name
|
|
18
|
-
path
|
|
19
|
-
size
|
|
20
|
-
thumb
|
|
21
|
-
updatedAt
|
|
22
|
-
url
|
|
23
|
-
slug
|
|
24
|
-
}
|
|
25
|
-
}
|