type DailyPlayerStatsRecord { player: Player @goField(forceResolver: true) villages: Int! points: Int! rank: Int! rankAtt: Int! scoreAtt: Int! rankDef: Int! scoreDef: Int! rankSup: Int! scoreSup: Int! rankTotal: Int! scoreTotal: Int! createDate: Time! } type DailyPlayerStats { total: Int! items: [DailyPlayerStatsRecord!] } input DailyPlayerStatsFilter { playerID: [Int!] playerIDNEQ: [Int!] createDate: Time createDateGT: Time createDateGTE: Time createDateLT: Time createDateLTE: Time offset: Int limit: Int sort: String } extend type Query { dailyPlayerStats( server: String! filter: DailyPlayerStatsFilter ): DailyPlayerStats! }