Examples
StuccoJS Examples
type Query{
hello: String
}
schema{
query: Query
}{
"resolvers":{
"Query.hello":{
"resolve":{
"name": "lib/hello"
}
}
}
}export function handler(input){
return "Hello world"
}Last updated
Was this helpful?