1 2 3 4 5 6 7 8 9101112
// $PF_GENERATE_ONCE$package gqlimport "context"func (s *Schema) Hello(ctx context.Context) (string, error) { return "Howdy!", nil}func (s *Schema) Poke(ctx context.Context) (string, error) { return "OK!", nil}