Advertisement
gonzalob

Untitled

May 13th, 2021
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. mutation health_control($email: String!, $time: String!, $oxygen_flow: String!, $oxygen_saturation: String!, $body_temperature: String!,
  2. $heart_rate: String!, $cough: Boolean!, $dyspnoea : Boolean!, $chest_pain : Boolean!, $monitoring_ontime: Boolean!,
  3. $safe_level: Boolean!, $monitoring_date: String!)
  4. {
  5. createHealthControl(input:{
  6. id_patient : $email
  7. createad_at: $time
  8. oxygen_flow: $oxygen_flow
  9. oxygen_saturation: $oxygen_saturation
  10. heart_rate: $heart_rate
  11. body_temperature: $body_temperature
  12. cough: $cough
  13. dyspnoea: $dyspnoea
  14. chest_pain: $chest_pain
  15. monitoring_ontime: $monitoring_ontime
  16. safe_level: $safe_level
  17. monitoring_date: $monitoring_date} ){
  18. oxygen_flow monitoring_date
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement