Andrew Obrigewitsch

Results 35 comments of Andrew Obrigewitsch

Unfortunately, the Schema returned from makeSchema doesn't work I did find that this works: ``` const testSchema = makeExecutableSchema({ typeDefs: importSchema(path.join(__dirname, '../generated/schema.graphql')), resolvers: resolvers }); ``` But it only works...

I think making a docker image for nexus would be a great way to get around the windows issues, as my company only uses Windows, so having a pre-made image...

@kazazes Can you link the project that this docker file is pulling from?

Unfortunately mine is private as well, but I'm just trying to work through the logic of yours. If you have the time maybe just make a small server and show...

@kazazes Thanks a lot I'm looking it over, and I'm sure it will help me!!

When I use docker I can get "nexus dev" to work and start a dev server, but running: RUN npm run build CMD ["npm", "start"] Results in the following error:...

Here's the exact test repo I'm using: https://github.com/blazestudios23/docker-nexus-test npm run test works but npm start does not.

@kazazes Thanks on the debugging tips those are helpful. I'm not a total docker Ninja yet. I actually tried that .nexus/build it didn't work either. And I tried to find...

@kazazes So it's creating a .nexus file and then not putting anything in it during the build process. ``` /usr/src/app/node_modules # cd .nexus /usr/src/app/node_modules/.nexus # ls -a . .. cache.tsbuildinfo...

OK their example project was completely off, it was in: .nexus/build/api First off the fact that I'm running it as a Docker Image made it harder to find, second putting...