@paris-ias/trees 2.0.47 → 2.0.48
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.
|
@@ -13,6 +13,7 @@ query search($appId: ID = "", $search: String = "", $lang: String = "en") {
|
|
|
13
13
|
url
|
|
14
14
|
}
|
|
15
15
|
lastname
|
|
16
|
+
summary
|
|
16
17
|
slug
|
|
17
18
|
score
|
|
18
19
|
}
|
|
@@ -23,6 +24,7 @@ query search($appId: ID = "", $search: String = "", $lang: String = "en") {
|
|
|
23
24
|
date
|
|
24
25
|
featured
|
|
25
26
|
name
|
|
27
|
+
summary
|
|
26
28
|
image {
|
|
27
29
|
alt
|
|
28
30
|
backgroundColor
|
|
@@ -45,6 +47,7 @@ query search($appId: ID = "", $search: String = "", $lang: String = "en") {
|
|
|
45
47
|
items {
|
|
46
48
|
subtitle
|
|
47
49
|
name
|
|
50
|
+
summary
|
|
48
51
|
image {
|
|
49
52
|
alt
|
|
50
53
|
backgroundColor
|
|
@@ -115,6 +118,7 @@ query search($appId: ID = "", $search: String = "", $lang: String = "en") {
|
|
|
115
118
|
category
|
|
116
119
|
date
|
|
117
120
|
featured
|
|
121
|
+
summary
|
|
118
122
|
image {
|
|
119
123
|
alt
|
|
120
124
|
backgroundColor
|
|
@@ -147,6 +147,7 @@ type Query {
|
|
|
147
147
|
login(email: AWSEmail!, password: String!): Token
|
|
148
148
|
listUsers(appId: ID, options: ListInput!, lang: String): UserList
|
|
149
149
|
getUser(appId: ID, itemId: ID, lang: String): User
|
|
150
|
+
checkAltcha(payload: String!, hmacKey: String!): AltchaVerification
|
|
150
151
|
search(appId: ID, search: String, lang: String): SearchList
|
|
151
152
|
getFellowship(appId: ID, itemId: ID, lang: String): Fellowship
|
|
152
153
|
getAction(appId: ID, itemId: ID, lang: String): Actions
|
|
@@ -165,7 +166,6 @@ type Query {
|
|
|
165
166
|
listFellowships(appId: ID, options: ListInput!, lang: String): FellowshipList
|
|
166
167
|
getPresignedUploadUrl(appId: ID, typeFile: String!): String
|
|
167
168
|
buildFiltersValues: Filters
|
|
168
|
-
checkAltcha(payload: String!, hmacKey: String!): AltchaVerification
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
schema {
|