{"endpoint":"/","version":"1.7.42","tabs":[{"endpoint":"https://covid19-graphql.netlify.app/","name":"By all countries","query":"# Returns data of all countries that has COVID-19\nquery countries {\n countries {\n country\n countryInfo {\n _id\n lat\n long\n flag\n iso3\n iso2\n }\n continent\n result {\n population\n tests\n cases\n todayCases\n deaths\n todayDeaths\n recovered\n active\n critical\n casesPerOneMillion\n deathsPerOneMillion\n testsPerOneMillion\n activePerOneMillion\n recoveredPerOneMillion\n criticalPerOneMillion\n updated\n }\n }\n}\n"},{"endpoint":"https://covid19-graphql.netlify.app/","name":"By a specific country","query":"# Returns data of a specific country\n# Note that 'name:\"<argument>\"' argument could be: <country> || <_id> || <iso2> || <iso3>\nquery country {\n country(name: \"Malaysia\", filterBy: yesterday) {\n country\n countryInfo {\n _id\n lat\n long\n flag\n iso2\n iso3\n }\n continent\n result {\n population\n tests\n cases\n todayCases\n deaths\n todayDeaths\n recovered\n active\n critical\n casesPerOneMillion\n deathsPerOneMillion\n testsPerOneMillion\n activePerOneMillion\n recoveredPerOneMillion\n criticalPerOneMillion\n updated\n }\n }\n}\n"},{"endpoint":"https://covid19-graphql.netlify.app/","name":"By states in the US","query":"# Returns data by states in the United States of America\nquery states {\n states {\n state\n result {\n population\n active\n tests\n cases\n todayCases\n deaths\n todayDeaths\n casesPerOneMillion\n deathsPerOneMillion\n testsPerOneMillion\n updated\n }\n }\n}\n"},{"endpoint":"https://covid19-graphql.netlify.app/","name":"By a specific state in the US","headers":{},"query":"# Returns data of a specific state in the United States of America\nquery state {\n state(name: \"New York\") {\n state\n result {\n population\n active\n tests\n cases\n todayCases\n deaths\n todayDeaths\n casesPerOneMillion\n deathsPerOneMillion\n testsPerOneMillion\n updated\n }\n }\n}\n"},{"endpoint":"https://covid19-graphql.netlify.app/","name":"Sort by country with most cases","query":"# Returns data sort by country with the most cases\nquery countries {\n countries(sortBy: cases) {\n country\n continent\n result {\n active\n cases\n todayCases\n deathsPerOneMillion\n updated\n }\n }\n}\n"},{"endpoint":"https://covid19-graphql.netlify.app/","name":"Sort by country with most deaths","query":"# Returns data sort by country with the most deaths\nquery countries {\n countries(sortBy: deaths) {\n country\n continent\n result {\n active\n deaths\n todayDeaths\n deathsPerOneMillion\n updated\n }\n }\n}\n"},{"endpoint":"https://covid19-graphql.netlify.app/","name":"By global total","headers":{},"query":"# Returns global data\nquery globalTotal {\n globalTotal {\n affectedCountries\n tests\n cases\n todayCases\n deaths\n todayDeaths\n recovered\n active\n critical\n casesPerOneMillion\n deathsPerOneMillion\n testsPerOneMillion\n activePerOneMillion\n recoveredPerOneMillion\n criticalPerOneMillion\n updated\n population\n }\n} \n"}],"canSaveConfig":false}
By all countries
By a specific country
By states in the US
By a specific state in the US
Sort by country with most cases
Sort by country with most deaths
By global total
xxxxxxxxxx
34
1
# Returns data of all countries that has COVID-19
2
querycountries{
3
countries{
4
country
5
countryInfo{
6
_id
7
lat
8
long
9
flag
10
iso3
11
iso2
12
}
13
continent
14
result{
15
population
16
tests
17
cases
18
todayCases
19
deaths
20
todayDeaths
21
recovered
22
active
23
critical
24
casesPerOneMillion
25
deathsPerOneMillion
26
testsPerOneMillion
27
activePerOneMillion
28
recoveredPerOneMillion
29
criticalPerOneMillion
30
updated
31
}
32
}
33
}
34
xxxxxxxxxx
1
xxxxxxxxxx
Hit the Play Button to get a response here
This GraphQL server either doesn't support Apollo Federation, or the query plan extensions is disabled. See the docs for setting up query plan viewing with Apollo Federation.