-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapollo-client.js
277 lines (264 loc) · 6.25 KB
/
apollo-client.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
import { ApolloClient, gql, InMemoryCache, HttpLink } from "@apollo/client"
import { API_URL } from "./src/constants/constants"
import fetch from "cross-fetch"
export const client = new ApolloClient({
cache: new InMemoryCache(),
headers: { "content-type": "application/json" },
link: new HttpLink({ uri: `${API_URL}/graphql?nocache`, fetch }),
})
export const GET_INFORMATION_PRO_SANTE = gql`
query annuaire1000JBlues {
annuaire1000JBlues {
prenom
nom
profession
telephone
mail
site
adresse
ville
code_postal
region
departement_code
departement
longitude
latitude
tarif
conventionne_securite_sociale
}
}
`
export const GET_ACTIVATION_TILE_STATUS = gql`
query activationTile {
activationTile {
activation_tile
rdv
sms
whatsapp
whatsapp_redirect_message
}
}
`
export const EPDS_ADD_SURVEY_RESULTS = gql`
mutation (
$genre: ENUM_REPONSESEPDS_GENRE!
$compteur: Int!
$score: Int!
$reponseNum1: Int!
$reponseNum2: Int!
$reponseNum3: Int!
$reponseNum4: Int!
$reponseNum5: Int!
$reponseNum6: Int!
$reponseNum7: Int!
$reponseNum8: Int!
$reponseNum9: Int!
$reponseNum10: Int!
$tempsSurvey: Int!
$langue: ID
$source: ENUM_REPONSESEPDS_SOURCE!
$sourceWidgetNom: String!
) {
createReponsesEpdsWidget(
genre: $genre
compteur: $compteur
score: $score
reponse_1: $reponseNum1
reponse_2: $reponseNum2
reponse_3: $reponseNum3
reponse_4: $reponseNum4
reponse_5: $reponseNum5
reponse_6: $reponseNum6
reponse_7: $reponseNum7
reponse_8: $reponseNum8
reponse_9: $reponseNum9
reponse_10: $reponseNum10
temps_survey: $tempsSurvey
langue: $langue
source: $source
source_widget_nom: $sourceWidgetNom
) {
id
created_at
}
}
`
export const EPDS_CONTACT_INFORMATION = gql`
mutation (
$email: String
$telephone: String
$prenom: String
$moyen: String
$horaires: String
$scoreQuestionDix: String
$langue: String
) {
epdsContact(
email: $email
telephone: $telephone
prenom: $prenom
moyen: $moyen
horaires: $horaires
score_question_dix: $scoreQuestionDix
langue: $langue
)
}
`
export const GET_TEMOIGNAGES_CHIFFRES = gql`
query temoignages {
temoignages {
titre
texte
chiffre_choc
source
}
}
`
/**
* Nombre total de tests EPDS passés
*/
export const GET_RESUTLATS_COUNT = gql`
query resultatsCount {
reponsesEpdsConnection {
aggregate {
count
}
}
}
`
export const SAVE_INFORMATION_DEMOGRAPHIQUES = gql`
mutation (
$genre: ENUM_INFORMATIONSDEMOGRAPHIQUES_GENRE
$age: ENUM_INFORMATIONSDEMOGRAPHIQUES_AGE
$entourageDispo: ENUM_INFORMATIONSDEMOGRAPHIQUES_ENTOURAGE_DISPO
$situation: String
$lastChildAge: Int
$moisGrossesse: Int
$codePostal: String
$ville: String
$departement: String
$departementLibelle: String
$region: String
$reponsesEpds: ID
$cspCode: String
$cspLibelle: String
) {
createInformationsDemographique(
input: {
data: {
genre: $genre
age: $age
entourage_dispo: $entourageDispo
situation: $situation
nb_mois_dernier_enfant: $lastChildAge
nb_mois_de_grossesse: $moisGrossesse
code_postal: $codePostal
ville: $ville
departement: $departement
departement_libelle: $departementLibelle
region: $region
reponses_epds: $reponsesEpds
csp_code: $cspCode
csp_libelle: $cspLibelle
}
}
) {
informationsDemographique {
id
created_at
}
}
}
`
/**
* MAJ de l'ID du résultats EPDS associé au formulaire des informationis démographiques
* @param {ID} infoDemographiqueId ID du formulaire Informations Démographiques
* @param {ID} reponsesEpdsId ID de la réponse EPDS
*/
export const UPDATE_REPONSES_EPDS_ID_IN_INFORMATION_DEMOGRAPHIQUES = gql`
mutation ($infoDemographiqueId: ID!, $reponsesEpdsId: ID) {
updateInformationsDemographique(
input: {
where: { id: $infoDemographiqueId }
data: { reponses_epds: $reponsesEpdsId }
}
) {
informationsDemographique {
id
created_at
}
}
}
`
/**
* Enregistre la demande de contact dans la collection "Demande de contacts"
* ENUM_DEMANDEDECONTACT_TYPE_DE_CONTACT { sms, email, chat, rendezvous }
*/
export const SAVE_DEMANDE_DE_CONTACT = gql`
mutation (
$typeDeContact: ENUM_DEMANDEDECONTACT_TYPE_DE_CONTACT
$widgetEpdsSource: ID
$reponsesEpds: ID
) {
createDemandeDeContact(
input: {
data: {
type_de_contact: $typeDeContact
widget_epds_source: $widgetEpdsSource
reponses_epds: $reponsesEpds
}
}
) {
demandeDeContact {
id
created_at
}
}
}
`
/**
* Enregistre le contact dans la collection "Contacts"
* ENUM_CONTACTS_TYPE_DE_CONTACT { sms, email, chat }
* ENUM_CONTACTS_PERSONNE_ACCOMPAGNEE { orientee, aidee, echange_initial, non_accompagnee, nouveau }
*/
export const SAVE_CONTACT = gql`
mutation (
$prenom: String
$departementCode: String
$departementLibelle: String
$datePriseContact: Date
$typeDeContact: ENUM_CONTACTS_TYPE_DE_CONTACT
$personneAccompagnee: ENUM_CONTACTS_PERSONNE_ACCOMPAGNEE
$commentaire: String
$widgetEpdsSource: ID
$email: String
$numero_telephone: String
) {
createContact(
input: {
data: {
prenom: $prenom
departement_code: $departementCode
departement_libelle: $departementLibelle
date_prise_contact: $datePriseContact
type_de_contact: $typeDeContact
personne_accompagnee: $personneAccompagnee
commentaire: $commentaire
widget_epds_source: $widgetEpdsSource
email: $email
numero_telephone: $numero_telephone
}
}
) {
contact {
id
prenom
}
}
}
`
export const DEMANDE_RESSOURCES = gql`
mutation ($email: String) {
partageRessourcesParMail(email: $email)
}
`