gql2hs/examples/greeting.gql

7 lines
105 B
Plaintext
Raw Normal View History

2019-07-31 20:25:10 +00:00
type Hello {
greeting(who: String!): String!
}
data Hello = Hello
{ greeting :: String -> String
}