Skip to content

Commit bf83fcb

Browse files
committed
update schema
1 parent f57f657 commit bf83fcb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

types/generated/graphql.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ export type CountryBasic = {
5353

5454
export type CountrySummary = {
5555
__typename?: 'CountrySummary';
56-
c: Scalars['Int']['output'];
56+
c: Scalars['Float']['output'];
5757
country: Scalars['String']['output'];
5858
countryData: CountryBasic;
5959
date: Scalars['String']['output'];
60-
f: Scalars['Int']['output'];
61-
s: Scalars['Int']['output'];
60+
f: Scalars['Float']['output'];
61+
s: Scalars['Float']['output'];
6262
topUsers?: Maybe<CountryTopUsers>;
6363
usersCount: Scalars['Int']['output'];
6464
};

types/generated/schema.graphql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ type CountryBasic {
3232
}
3333

3434
type CountrySummary {
35-
c: Int!
35+
c: Float!
3636
country: String!
3737
countryData: CountryBasic!
3838
date: String!
39-
f: Int!
40-
s: Int!
39+
f: Float!
40+
s: Float!
4141
topUsers: CountryTopUsers
4242
usersCount: Int!
4343
}

0 commit comments

Comments
 (0)