This repository was archived by the owner on Apr 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathschema.gql
More file actions
68 lines (60 loc) · 1.24 KB
/
Copy pathschema.gql
File metadata and controls
68 lines (60 loc) · 1.24 KB
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
# -----------------------------------------------
# !!! THIS FILE WAS GENERATED BY TYPE-GRAPHQL !!!
# !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
# -----------------------------------------------
type Brazil {
totalDeaths: Float!
totalCases: Float!
activeCases: Float!
totalRecovered: Float!
closedCases: Float!
}
type City {
id: String!
uf: String!
name: String!
cases: Float!
casesMS: Float!
casesNotConfirmedByMS: Float!
deaths: Float!
latitude: Float!
longitude: Float!
}
input CityFilterInput {
id: String
name: String
uf: String
}
type GlobalData {
totalCases: Float!
totalDeaths: Float!
totalRecovered: Float!
activeCases: Float!
closedCases: Float!
}
input PaginationInput {
offset: Float!
first: Float!
}
type Query {
global: GlobalData
brazil: Brazil
states(pagination: PaginationInput, filter: StateFilterInput): [State!]
state(filter: StateFilterInput): State
city(filter: CityFilterInput): City
cities(pagination: PaginationInput, filter: CityFilterInput): [City!]
}
type State {
uf: String!
name: String!
latitude: Float!
longitude: Float!
cases: Float!
casesMS: Float!
casesNotConfirmedByMS: Float!
deaths: Float!
}
input StateFilterInput {
name: String
uf: String
}