Giter VIP home page Giter VIP logo

Comments (4)

cshadek avatar cshadek commented on May 24, 2024

Every time it tries to fetch the schema it shows this error:

Screen Shot 2022-06-20 at 4 56 42 PM

And the logs show the following:
Screen Shot 2022-06-20 at 4 58 02 PM

from pioneer.

d-exclaimation avatar d-exclaimation commented on May 24, 2024

CORS is enforced by the browser when making cross-origin HTTP requests initiated from scripts.

I am pretty sure you don't need to configure CORS for the desktop app of BananaCakePop.

Regardless, BananaCakePop is built with Electron. You should be able to view the DevTools (View / Toogle Developer Tools), check if CORS was applied, and inspect the network request made by the app.

I am not sure why you ran into issues with fetching the schema, I highly recommend checking the network activity and see why the introspection query failed

from pioneer.

d-exclaimation avatar d-exclaimation commented on May 24, 2024

Looking at the error message, it seemed like Banana Cake Pop did manage to find the Vapor server but it was making a request to an unknown path / route.

You might want to check what path your GraphQL Server is served at. If you call server.applyMiddleware, you are able to set a path like (/api, /graphql) where the server is served at, the default is /graphql if you don't provide anything.

server.applyMiddleware(router, at: "...")

I have tried it on a simple example server and it worked fine.

Screenshot 2022-06-21 at 2 22 33 PM

This example server served GraphQL on http://localhost:8080/graphql.

from pioneer.

cshadek avatar cshadek commented on May 24, 2024

So I figured out what I was doing wrong.

I was originally doing this:
server.applyMiddleware(on: app.grouped("main", "v1"))

I switched it to this:
server.applyMiddleware(on: app.grouped("main"), at: "v1")

I didn't realize about the "graphql" default path. So I guess it was hosting it at http://localhost:8080/main/v1/graphql

from pioneer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.