#I am trying to set up a new example
1 messages · Page 1 of 1 (latest)
@uncut badge to save time can you share details of your problem? We'll look at it asap
Like @frank dirge we're joining a call in 60 seconds 😅 but eager to help on the community call or right after
going through the steps to set up the foo example action, but when invoking via cloak cli I get missing resolver for: Query.foo, not sure what that means
I see the "Query.foo" handler in generated.go and i'm invoking it like ./cloak -p examples/foo/cloak.yaml do <<<'{foo{bar(in:"test")}}'
defined as ```type Foo {
bar(in: String!): String!
}
Hm okay, when you have a sec can you send over the contents of these files: examples/foo/cloak.yaml, examples/foo/schema.graphql and examples/foo/Dockerfile?
cloak.yml is ```name: foo
schema.graphql is ```extend type Query {
foo: Foo!
}
type Foo {
bar(in: String!): String!
}
dockerfile is copied from examples/alpine
Did you update the contents of the dockerfile to change examples/alpine to examples/foo?
(Sorry about all this silly boilerplate, the Dockerfile specifically is going away soon, I have a branch that gets rid of it that can be merged in the near future)
ah! yep that was it. looks like i need an operations.graphql now