Last active
August 19, 2020 09:04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.fevziomurtekin.sample.graphql.query | |
import com.coxautodev.graphql.tools.GraphQLQueryResolver | |
import com.fevziomurtekin.sample.dao.CovidDao | |
import org.springframework.stereotype.Component | |
@Component | |
class CovidQuery(private val covidDao: CovidDao) : GraphQLQueryResolver { | |
fun allContent() = covidDao.findAll() | |
fun allContentByDate(date:String) = covidDao.getContentByDate(date) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment