Skip to content
This repository has been archived by the owner on Mar 22, 2023. It is now read-only.

Commit

Permalink
pairdaydata query corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
Hammad-Mubeen committed Nov 17, 2021
1 parent 0b33c92 commit e9aa2da
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions graphql/types/pairDayData.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ const {
GraphQLObjectType,
GraphQLID,
GraphQLString,
GraphQLInt
GraphQLInt,
GraphQLFloat
} = require("graphql");

const pairDayDataType = new GraphQLObjectType({
Expand All @@ -13,7 +14,7 @@ const pairDayDataType = new GraphQLObjectType({

_id: {type: GraphQLID },
id:{type:GraphQLString},
date: {type:GraphQLInt},
date: {type:GraphQLFloat},
pairAddress:{type:GraphQLString},
token0: {type:GraphQLString},
token1:{type: GraphQLString},
Expand Down

0 comments on commit e9aa2da

Please sign in to comment.