#I am trying to set up a new example

1 messages · Page 1 of 1 (latest)

tender violet
#

@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

uncut badge
#

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!
}

frank dirge
#

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?

uncut badge
#

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

frank dirge
#

(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)

uncut badge
#

ah! yep that was it. looks like i need an operations.graphql now