{"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}