Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 874 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 874 Bytes

Covid19-graphql

Experimenting with a simple Graphql API that fetches covid-19 related data.

References:

How to use.

  • Probaby the easiest way to get the application up and running is to run docker-compose up, it should intialize the database and start the application.
  • Visit http://127.0.0.1:5000/graphql
  • Then you can try to fetch the avaliable data, for example the cases in ICUs for all the avaliable dates :
{ 
 Npho{ 
   intesCareCases{
       date
       intensiveCare 
      }
     }
}

Todo

  • Fetch data for single country by providing the name as input.

  • Add NPHO (EODY) Greek Covid-19 data.

  • Update data automatically.

  • Add NPHO (EODY) Vaccination data.