@paris-ias/list 1.0.111 → 1.0.113

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.
Files changed (163) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/events/DenseItem.vue +24 -15
  3. package/dist/runtime/components/fellowships/DenseItem.vue +1 -1
  4. package/dist/runtime/components/list/atoms/SearchInput.vue +4 -2
  5. package/dist/runtime/components/list/molecules/Pagination.vue +2 -0
  6. package/dist/runtime/components/list/organisms/List.vue +16 -2
  7. package/dist/runtime/components/list/views/Dense.vue +0 -1
  8. package/dist/runtime/components/news/DenseItem.vue +24 -23
  9. package/dist/runtime/components/people/Badges.vue +74 -0
  10. package/dist/runtime/components/people/DenseItem.vue +11 -8
  11. package/dist/runtime/components/people/RowsItem.vue +2 -2
  12. package/dist/runtime/components/people/View.vue +1 -1
  13. package/dist/runtime/components/publications/DenseItem.vue +14 -7
  14. package/dist/runtime/graphql/list/publications.gql +2 -0
  15. package/dist/runtime/runtime/components/actions/ExpandedItem.vue +14 -0
  16. package/dist/runtime/runtime/components/actions/RowsItem.vue +12 -0
  17. package/dist/runtime/runtime/components/actions/View.vue +20 -0
  18. package/dist/runtime/runtime/components/affiliations/ExpandedItem.vue +14 -0
  19. package/dist/runtime/runtime/components/affiliations/RowsItem.vue +12 -0
  20. package/dist/runtime/runtime/components/affiliations/View.vue +20 -0
  21. package/dist/runtime/runtime/components/apps/ExpandedItem.vue +14 -0
  22. package/dist/runtime/runtime/components/apps/RowsItem.vue +12 -0
  23. package/dist/runtime/runtime/components/apps/View.vue +20 -0
  24. package/dist/runtime/runtime/components/disciplines/ExpandedItem.vue +14 -0
  25. package/dist/runtime/runtime/components/disciplines/RowsItem.vue +12 -0
  26. package/dist/runtime/runtime/components/disciplines/View.vue +20 -0
  27. package/dist/runtime/runtime/components/events/Badges.vue +73 -0
  28. package/dist/runtime/runtime/components/events/DateTimePlace.vue +77 -0
  29. package/dist/runtime/runtime/components/events/DenseItem.vue +60 -0
  30. package/dist/runtime/runtime/components/events/ExpandedItem.vue +9 -0
  31. package/dist/runtime/runtime/components/events/RegisterModal.vue +50 -0
  32. package/dist/runtime/runtime/components/events/RelatedItem.vue +44 -0
  33. package/dist/runtime/runtime/components/events/RowsItem.vue +118 -0
  34. package/dist/runtime/runtime/components/events/SlidingItem.vue +63 -0
  35. package/dist/runtime/runtime/components/events/View.vue +333 -0
  36. package/dist/runtime/runtime/components/fellowships/Badges.vue +47 -0
  37. package/dist/runtime/runtime/components/fellowships/DenseItem.vue +42 -0
  38. package/dist/runtime/runtime/components/fellowships/ExpandedItem.vue +7 -0
  39. package/dist/runtime/runtime/components/fellowships/RegisterModal.vue +41 -0
  40. package/dist/runtime/runtime/components/fellowships/RowsItem.vue +58 -0
  41. package/dist/runtime/runtime/components/fellowships/View.vue +203 -0
  42. package/dist/runtime/runtime/components/files/ExpandedItem.vue +14 -0
  43. package/dist/runtime/runtime/components/files/RowsItem.vue +12 -0
  44. package/dist/runtime/runtime/components/files/View.vue +20 -0
  45. package/dist/runtime/runtime/components/list/atoms/FiltersMenu.vue +44 -0
  46. package/dist/runtime/runtime/components/list/atoms/ResetButton.vue +33 -0
  47. package/dist/runtime/runtime/components/list/atoms/ResultsList.vue +27 -0
  48. package/dist/runtime/runtime/components/list/atoms/SearchInput.vue +59 -0
  49. package/dist/runtime/runtime/components/list/atoms/SearchItem.vue +65 -0
  50. package/dist/runtime/runtime/components/list/atoms/SearchString.vue +160 -0
  51. package/dist/runtime/runtime/components/list/atoms/SortMenu.vue +80 -0
  52. package/dist/runtime/runtime/components/list/atoms/ViewMenu.vue +63 -0
  53. package/dist/runtime/runtime/components/list/atoms/itemsPerPage.vue +33 -0
  54. package/dist/runtime/runtime/components/list/inputs/AutoComplete.vue +24 -0
  55. package/dist/runtime/runtime/components/list/inputs/BooleanSwitch.vue +20 -0
  56. package/dist/runtime/runtime/components/list/inputs/Checkbox.vue +20 -0
  57. package/dist/runtime/runtime/components/list/inputs/Select.vue +28 -0
  58. package/dist/runtime/runtime/components/list/molecules/Filters.vue +98 -0
  59. package/dist/runtime/runtime/components/list/molecules/GlobalSearchInput.vue +131 -0
  60. package/dist/runtime/runtime/components/list/molecules/Header.vue +51 -0
  61. package/dist/runtime/runtime/components/list/molecules/Pagination.vue +194 -0
  62. package/dist/runtime/runtime/components/list/molecules/ResultsContainer.vue +78 -0
  63. package/dist/runtime/runtime/components/list/organisms/List.vue +110 -0
  64. package/dist/runtime/runtime/components/list/organisms/Results.vue +72 -0
  65. package/dist/runtime/runtime/components/list/organisms/Slider.vue +180 -0
  66. package/dist/runtime/runtime/components/list/views/Dense.vue +12 -0
  67. package/dist/runtime/runtime/components/list/views/Expanded.vue +10 -0
  68. package/dist/runtime/runtime/components/list/views/Grid.vue +13 -0
  69. package/dist/runtime/runtime/components/list/views/Rows.vue +12 -0
  70. package/dist/runtime/runtime/components/list/views/Slider.vue +147 -0
  71. package/dist/runtime/runtime/components/list/views/Table.vue +13 -0
  72. package/dist/runtime/runtime/components/mailing/ExpandedItem.vue +14 -0
  73. package/dist/runtime/runtime/components/mailing/RowsItem.vue +12 -0
  74. package/dist/runtime/runtime/components/mailing/View.vue +20 -0
  75. package/dist/runtime/runtime/components/misc/atoms/DateStamp.vue +101 -0
  76. package/dist/runtime/runtime/components/misc/atoms/ImageContainer.vue +127 -0
  77. package/dist/runtime/runtime/components/misc/atoms/ShareMenu.vue +61 -0
  78. package/dist/runtime/runtime/components/misc/atoms/Socials.vue +120 -0
  79. package/dist/runtime/runtime/components/misc/molecules/ChipContainer.vue +31 -0
  80. package/dist/runtime/runtime/components/misc/molecules/Related.vue +28 -0
  81. package/dist/runtime/runtime/components/misc/molecules/RelatedItems.vue +27 -0
  82. package/dist/runtime/runtime/components/misc/molecules/SearchItem.vue +26 -0
  83. package/dist/runtime/runtime/components/news/DenseItem.vue +73 -0
  84. package/dist/runtime/runtime/components/news/ExpandedItem.vue +145 -0
  85. package/dist/runtime/runtime/components/news/Header.vue +7 -0
  86. package/dist/runtime/runtime/components/news/RelatedItem.vue +44 -0
  87. package/dist/runtime/runtime/components/news/RowsItem.vue +182 -0
  88. package/dist/runtime/runtime/components/news/View.vue +174 -0
  89. package/dist/runtime/runtime/components/people/DenseItem.vue +60 -0
  90. package/dist/runtime/runtime/components/people/ExpandedItem.vue +14 -0
  91. package/dist/runtime/runtime/components/people/RelatedItem.vue +41 -0
  92. package/dist/runtime/runtime/components/people/RowsItem.vue +93 -0
  93. package/dist/runtime/runtime/components/people/View.vue +172 -0
  94. package/dist/runtime/runtime/components/projects/DenseItem.vue +77 -0
  95. package/dist/runtime/runtime/components/projects/ExpandedItem.vue +12 -0
  96. package/dist/runtime/runtime/components/projects/RelatedItem.vue +44 -0
  97. package/dist/runtime/runtime/components/projects/RowsItem.vue +103 -0
  98. package/dist/runtime/runtime/components/projects/View.vue +130 -0
  99. package/dist/runtime/runtime/components/publications/DenseItem.vue +89 -0
  100. package/dist/runtime/runtime/components/publications/RelatedItem.vue +44 -0
  101. package/dist/runtime/runtime/components/publications/RowsItem.vue +105 -0
  102. package/dist/runtime/runtime/components/publications/View.vue +132 -0
  103. package/dist/runtime/runtime/components/tags/ExpandedItem.vue +14 -0
  104. package/dist/runtime/runtime/components/tags/RowsItem.vue +12 -0
  105. package/dist/runtime/runtime/components/tags/View.vue +20 -0
  106. package/dist/runtime/runtime/components/users/ExpandedItem.vue +14 -0
  107. package/dist/runtime/runtime/components/users/RowsItem.vue +12 -0
  108. package/dist/runtime/runtime/components/users/View.vue +20 -0
  109. package/dist/runtime/runtime/composables/useFetchItem.d.ts +6 -0
  110. package/dist/runtime/runtime/composables/useFetchItem.js +49 -0
  111. package/dist/runtime/runtime/composables/useIcons.d.ts +1 -0
  112. package/dist/runtime/runtime/composables/useIcons.js +30 -0
  113. package/dist/runtime/runtime/composables/useUtils.d.ts +12 -0
  114. package/dist/runtime/runtime/composables/useUtils.js +48 -0
  115. package/dist/runtime/runtime/graphql/buildFiltersValues.gql +35 -0
  116. package/dist/runtime/runtime/graphql/item/action.gql +22 -0
  117. package/dist/runtime/runtime/graphql/item/affiliations.gql +37 -0
  118. package/dist/runtime/runtime/graphql/item/apps.gql +34 -0
  119. package/dist/runtime/runtime/graphql/item/disciplines.gql +17 -0
  120. package/dist/runtime/runtime/graphql/item/events.gql +120 -0
  121. package/dist/runtime/runtime/graphql/item/fellowships.gql +164 -0
  122. package/dist/runtime/runtime/graphql/item/files.gql +25 -0
  123. package/dist/runtime/runtime/graphql/item/mailing.gql +10 -0
  124. package/dist/runtime/runtime/graphql/item/news.gql +129 -0
  125. package/dist/runtime/runtime/graphql/item/people.gql +174 -0
  126. package/dist/runtime/runtime/graphql/item/projects.gql +171 -0
  127. package/dist/runtime/runtime/graphql/item/publications.gql +169 -0
  128. package/dist/runtime/runtime/graphql/item/tags.gql +13 -0
  129. package/dist/runtime/runtime/graphql/item/users.gql +14 -0
  130. package/dist/runtime/runtime/graphql/list/action.gql +31 -0
  131. package/dist/runtime/runtime/graphql/list/affiliations.gql +42 -0
  132. package/dist/runtime/runtime/graphql/list/apps.gql +42 -0
  133. package/dist/runtime/runtime/graphql/list/disciplines.gql +22 -0
  134. package/dist/runtime/runtime/graphql/list/events.gql +44 -0
  135. package/dist/runtime/runtime/graphql/list/fellowships.gql +53 -0
  136. package/dist/runtime/runtime/graphql/list/files.gql +37 -0
  137. package/dist/runtime/runtime/graphql/list/mailing.gql +22 -0
  138. package/dist/runtime/runtime/graphql/list/news.gql +40 -0
  139. package/dist/runtime/runtime/graphql/list/people.gql +50 -0
  140. package/dist/runtime/runtime/graphql/list/projects.gql +37 -0
  141. package/dist/runtime/runtime/graphql/list/publications.gql +38 -0
  142. package/dist/runtime/runtime/graphql/list/search.gql +161 -0
  143. package/dist/runtime/runtime/graphql/list/tags.gql +22 -0
  144. package/dist/runtime/runtime/graphql/list/users.gql +38 -0
  145. package/dist/runtime/runtime/graphql/login.gql +0 -0
  146. package/dist/runtime/runtime/plugins/pinia.d.ts +2 -0
  147. package/dist/runtime/runtime/plugins/pinia.js +134 -0
  148. package/dist/runtime/runtime/plugins/vuetify.d.ts +2 -0
  149. package/dist/runtime/runtime/plugins/vuetify.js +21 -0
  150. package/dist/runtime/runtime/public/default.png +0 -0
  151. package/dist/runtime/runtime/public/filters.json +72 -0
  152. package/dist/runtime/runtime/server/tsconfig.json +3 -0
  153. package/dist/runtime/runtime/stores/factory.d.ts +25 -0
  154. package/dist/runtime/runtime/stores/factory.js +19 -0
  155. package/dist/runtime/runtime/stores/root.d.ts +60 -0
  156. package/dist/runtime/runtime/stores/root.js +315 -0
  157. package/dist/runtime/runtime/translations/en.json +350 -0
  158. package/dist/runtime/runtime/translations/fr.json +349 -0
  159. package/dist/runtime/runtime/types/imports.d.ts +13 -0
  160. package/dist/runtime/runtime/types/stores.d.ts +11 -0
  161. package/dist/runtime/translations/en.json +1 -1
  162. package/package.json +2 -2
  163. /package/dist/runtime/{components → runtime/components}/people/GroupBadges.vue +0 -0
@@ -0,0 +1,174 @@
1
+ query getPeople($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
2
+ getPeople(appId: $appId, itemId: $itemId, lang: $lang) {
3
+ affiliations {
4
+ affiliation {
5
+ image {
6
+ alt
7
+ backgroundColor
8
+ caption
9
+ copyright
10
+ license
11
+ licenseUrl
12
+ url
13
+ }
14
+ location {
15
+ alt
16
+ city
17
+ country
18
+ details
19
+ geocode {
20
+ lat
21
+ lng
22
+ }
23
+ name
24
+ street
25
+ zip
26
+ }
27
+ name
28
+ ror
29
+ url
30
+ }
31
+ positions {
32
+ department
33
+ role
34
+ start
35
+ stop
36
+ }
37
+ }
38
+ biography
39
+ firstname
40
+ groups {
41
+ board
42
+ fellows
43
+ sab
44
+ sponsor
45
+ team
46
+ vintage {
47
+ name
48
+ theme
49
+ url
50
+ year
51
+ }
52
+ }
53
+ image {
54
+ url
55
+ license
56
+ copyright
57
+ caption
58
+ backgroundColor
59
+ alt
60
+ licenseUrl
61
+ }
62
+ lastname
63
+ socials {
64
+ idRef
65
+ instagram
66
+ linkedin
67
+ mendeley
68
+ orcid
69
+ researchgate
70
+ scholar
71
+ twitter
72
+ website
73
+ wikipedia
74
+ }
75
+ video {
76
+ url
77
+ alt
78
+ caption
79
+ copyright
80
+ license
81
+ licenseUrl
82
+ backgroundColor
83
+ }
84
+ slug
85
+ appId
86
+ consent {
87
+ data
88
+ diffusion
89
+ email
90
+ fellowshipnewsletter
91
+ newsletter
92
+ publication
93
+ record
94
+ }
95
+ disciplines {
96
+ createdAt
97
+ description
98
+ icon
99
+ name
100
+ updatedAt
101
+ }
102
+ id
103
+ related {
104
+ events {
105
+ description
106
+ image {
107
+ alt
108
+ backgroundColor
109
+ caption
110
+ copyright
111
+ license
112
+ licenseUrl
113
+ url
114
+ }
115
+ name
116
+ url
117
+ slug
118
+ }
119
+ news {
120
+ description
121
+ slug
122
+ id
123
+ image {
124
+ alt
125
+ backgroundColor
126
+ caption
127
+ copyright
128
+ license
129
+ licenseUrl
130
+ url
131
+ }
132
+ name
133
+ url
134
+ }
135
+ people {
136
+ firstname
137
+ slug
138
+ id
139
+ image {
140
+ alt
141
+ backgroundColor
142
+ caption
143
+ copyright
144
+ license
145
+ licenseUrl
146
+ url
147
+ }
148
+ lastname
149
+ }
150
+ projects {
151
+ description
152
+ slug
153
+ id
154
+ image {
155
+ alt
156
+ backgroundColor
157
+ caption
158
+ copyright
159
+ license
160
+ licenseUrl
161
+ url
162
+ }
163
+ name
164
+ url
165
+ }
166
+ publications {
167
+ id
168
+ slug
169
+ name
170
+ url
171
+ }
172
+ }
173
+ }
174
+ }
@@ -0,0 +1,171 @@
1
+ query getProject($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
2
+ getProject(appId: $appId, itemId: $itemId, lang: $lang) {
3
+ color
4
+ date
5
+ description
6
+ featured
7
+ slug {
8
+ fr
9
+ en
10
+ }
11
+ files {
12
+ file
13
+ createdAt
14
+ fileType
15
+ hash
16
+ id
17
+ image {
18
+ alt
19
+ backgroundColor
20
+ copyright
21
+ caption
22
+ license
23
+ licenseUrl
24
+ url
25
+ }
26
+ path
27
+ size
28
+ name
29
+ thumb
30
+ updatedAt
31
+ url
32
+ }
33
+ subtitle
34
+ name
35
+ url
36
+ video {
37
+ alt
38
+ backgroundColor
39
+ caption
40
+ copyright
41
+ licenseUrl
42
+ license
43
+ url
44
+ }
45
+ affiliations {
46
+ name
47
+ ror
48
+ url
49
+ location {
50
+ alt
51
+ city
52
+ country
53
+ details
54
+ name
55
+ street
56
+ zip
57
+ geocode {
58
+ lat
59
+ lng
60
+ }
61
+ }
62
+ image {
63
+ alt
64
+ backgroundColor
65
+ caption
66
+ copyright
67
+ license
68
+ licenseUrl
69
+ url
70
+ }
71
+ }
72
+ gallery {
73
+ alt
74
+ backgroundColor
75
+ caption
76
+ copyright
77
+ license
78
+ licenseUrl
79
+ url
80
+ }
81
+ image {
82
+ alt
83
+ backgroundColor
84
+ caption
85
+ copyright
86
+ license
87
+ licenseUrl
88
+ url
89
+ }
90
+ tags {
91
+ createdAt
92
+ description
93
+ icon
94
+ name
95
+ updatedAt
96
+ }
97
+ appId
98
+ id
99
+ status
100
+ related {
101
+ events {
102
+ description
103
+ image {
104
+ alt
105
+ backgroundColor
106
+ caption
107
+ copyright
108
+ licenseUrl
109
+ license
110
+ url
111
+ }
112
+ name
113
+ url
114
+ slug
115
+ }
116
+ news {
117
+ description
118
+ id
119
+ image {
120
+ alt
121
+ backgroundColor
122
+ caption
123
+ copyright
124
+ license
125
+ licenseUrl
126
+ url
127
+ }
128
+ name
129
+ url
130
+ slug
131
+ }
132
+ people {
133
+ firstname
134
+ id
135
+ image {
136
+ alt
137
+ backgroundColor
138
+ caption
139
+ copyright
140
+ license
141
+ licenseUrl
142
+ url
143
+ }
144
+ lastname
145
+ slug
146
+ }
147
+ projects {
148
+ description
149
+ id
150
+ image {
151
+ alt
152
+ backgroundColor
153
+ caption
154
+ copyright
155
+ license
156
+ licenseUrl
157
+ url
158
+ }
159
+ name
160
+ url
161
+ slug
162
+ }
163
+ publications {
164
+ id
165
+ name
166
+ url
167
+ slug
168
+ }
169
+ }
170
+ }
171
+ }
@@ -0,0 +1,169 @@
1
+ query getPublication(
2
+ $appId: ID = "iea"
3
+ $itemId: ID = ""
4
+ $lang: String = "en"
5
+ ) {
6
+ getPublication(appId: $appId, itemId: $itemId, lang: $lang) {
7
+ affiliations {
8
+ image {
9
+ alt
10
+ backgroundColor
11
+ caption
12
+ copyright
13
+ license
14
+ licenseUrl
15
+ url
16
+ }
17
+ location {
18
+ alt
19
+ city
20
+ country
21
+ details
22
+ geocode {
23
+ lat
24
+ lng
25
+ }
26
+ name
27
+ street
28
+ zip
29
+ }
30
+ name
31
+ ror
32
+ url
33
+ }
34
+ color
35
+ date
36
+ description
37
+ files {
38
+ createdAt
39
+ file
40
+ fileType
41
+ hash
42
+ id
43
+ image {
44
+ alt
45
+ backgroundColor
46
+ caption
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
+ backgroundColor
61
+ alt
62
+ caption
63
+ copyright
64
+ license
65
+ licenseUrl
66
+ url
67
+ }
68
+ id
69
+ image {
70
+ alt
71
+ backgroundColor
72
+ caption
73
+ copyright
74
+ license
75
+ licenseUrl
76
+ url
77
+ }
78
+ subtitle
79
+ tags {
80
+ createdAt
81
+ description
82
+ icon
83
+ name
84
+ updatedAt
85
+ }
86
+ name
87
+ url
88
+ video {
89
+ alt
90
+ backgroundColor
91
+ caption
92
+ copyright
93
+ license
94
+ licenseUrl
95
+ url
96
+ }
97
+ appId
98
+ type
99
+ related {
100
+ events {
101
+ description
102
+ image {
103
+ alt
104
+ backgroundColor
105
+ caption
106
+ copyright
107
+ license
108
+ licenseUrl
109
+ url
110
+ }
111
+ name
112
+ url
113
+ }
114
+ news {
115
+ description
116
+ id
117
+ image {
118
+ alt
119
+ backgroundColor
120
+ caption
121
+ copyright
122
+ license
123
+ licenseUrl
124
+ url
125
+ }
126
+ name
127
+ url
128
+ }
129
+ people {
130
+ firstname
131
+ id
132
+ image {
133
+ alt
134
+ backgroundColor
135
+ caption
136
+ copyright
137
+ license
138
+ licenseUrl
139
+ url
140
+ }
141
+ lastname
142
+ }
143
+ projects {
144
+ description
145
+ id
146
+ image {
147
+ alt
148
+ backgroundColor
149
+ caption
150
+ copyright
151
+ license
152
+ licenseUrl
153
+ url
154
+ }
155
+ name
156
+ url
157
+ }
158
+ publications {
159
+ id
160
+ name
161
+ url
162
+ }
163
+ }
164
+ slug {
165
+ fr
166
+ en
167
+ }
168
+ }
169
+ }
@@ -0,0 +1,13 @@
1
+ query getTag($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
2
+ getTag(appId: $appId, itemId: $itemId, lang: $lang) {
3
+ createdAt
4
+ description
5
+ icon
6
+ name
7
+ updatedAt
8
+ slug {
9
+ fr
10
+ en
11
+ }
12
+ }
13
+ }
@@ -0,0 +1,14 @@
1
+ query getUser($appId: ID = "iea", $userId: ID = "") {
2
+ getUser(appId: $appId, userId: $userId) {
3
+ slug {
4
+ en
5
+ fr
6
+ }
7
+ admin
8
+ branch
9
+ createdAt
10
+ email
11
+ role
12
+ status
13
+ }
14
+ }
@@ -0,0 +1,31 @@
1
+ query listActions(
2
+ $options: ListInput = {
3
+ skip: 0
4
+ limit: 9
5
+ sortBy: ["start"]
6
+ sortDesc: false
7
+ filters: "{}"
8
+ }
9
+ $appId: ID = "iea"
10
+ $lang: String = "en"
11
+ ) {
12
+ listActions(options: $options, appId: $appId, lang: $lang) {
13
+ items {
14
+ color
15
+ image {
16
+ alt
17
+ backgroundColor
18
+ caption
19
+ copyright
20
+ license
21
+ licenseUrl
22
+ url
23
+ }
24
+ link
25
+ name
26
+ slots
27
+ video
28
+ }
29
+ total
30
+ }
31
+ }
@@ -0,0 +1,42 @@
1
+ query listAffiliations(
2
+ $options: ListInput = {
3
+ skip: 0
4
+ limit: 9
5
+ sortBy: ["start"]
6
+ sortDesc: false
7
+ filters: "{}"
8
+ }
9
+ $lang: String = "en"
10
+ $appId: ID = "iea"
11
+ ) {
12
+ listAffiliations(options: $options, appId: $appId, lang: $lang) {
13
+ items {
14
+ image {
15
+ alt
16
+ backgroundColor
17
+ caption
18
+ copyright
19
+ license
20
+ licenseUrl
21
+ url
22
+ }
23
+ location {
24
+ alt
25
+ city
26
+ country
27
+ details
28
+ geocode {
29
+ lat
30
+ lng
31
+ }
32
+ name
33
+ street
34
+ zip
35
+ }
36
+ name
37
+ ror
38
+ url
39
+ }
40
+ total
41
+ }
42
+ }
@@ -0,0 +1,42 @@
1
+ query listApps(
2
+ $options: ListInput = {
3
+ skip: 0
4
+ limit: 9
5
+ sortBy: ["start"]
6
+ sortDesc: false
7
+ filters: "{}"
8
+ }
9
+ $lang: String = "en"
10
+ $appId: ID = "iea"
11
+ ) {
12
+ listApps(options: $options, appId: $appId, lang: $lang) {
13
+ items {
14
+ appId
15
+ color
16
+ date
17
+ description
18
+ logo {
19
+ alt
20
+ backgroundColor
21
+ caption
22
+ copyright
23
+ license
24
+ licenseUrl
25
+ url
26
+ }
27
+ name
28
+ state
29
+ subtitle
30
+ summary
31
+ tags {
32
+ createdAt
33
+ description
34
+ icon
35
+ name
36
+ updatedAt
37
+ }
38
+ url
39
+ }
40
+ total
41
+ }
42
+ }
@@ -0,0 +1,22 @@
1
+ query listDisciplines(
2
+ $appId: ID = "iea"
3
+ $lang: String = "en"
4
+ $options: ListInput = {
5
+ skip: 0
6
+ limit: 9
7
+ sortBy: ["start"]
8
+ sortDesc: false
9
+ filters: "{}"
10
+ }
11
+ ) {
12
+ listDisciplines(options: $options, appId: $appId, lang: $lang) {
13
+ items {
14
+ createdAt
15
+ description
16
+ icon
17
+ name
18
+ updatedAt
19
+ }
20
+ total
21
+ }
22
+ }
@@ -0,0 +1,44 @@
1
+ query listEvents(
2
+ $options: ListInput = {}
3
+ $appId: ID = "iea"
4
+ $lang: String = "en"
5
+ ) {
6
+ listEvents(options: $options, appId: $appId, lang: $lang) {
7
+ items {
8
+ availableSlots
9
+ bookingState
10
+ category
11
+ dateText
12
+ details
13
+ eventType
14
+ summary
15
+ subtitle
16
+ id
17
+ image {
18
+ alt
19
+ backgroundColor
20
+ caption
21
+ copyright
22
+ license
23
+ licenseUrl
24
+ url
25
+ }
26
+ name
27
+ outside
28
+ place {
29
+ address
30
+ id
31
+ name
32
+ url
33
+ }
34
+ state
35
+ start
36
+ stop
37
+ slug {
38
+ fr
39
+ en
40
+ }
41
+ }
42
+ total
43
+ }
44
+ }