Created
May 17, 2020 15:36
-
-
Save svenhakvoort/3c2dc9395c976608cdd85c19e85a770d to your computer and use it in GitHub Desktop.
Demo GraphQL Query
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.example.demographql.query | |
import com.expediagroup.graphql.spring.operations.Query | |
import org.springframework.stereotype.Controller | |
@Controller | |
class DemoQuery: Query { | |
fun demo(): String { | |
return "Our query works" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment