-
Notifications
You must be signed in to change notification settings - Fork 470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[apollo-language-server] Allow config.client.service.localSchemaFile #676
Conversation
No idea what's wrong with circleci though 🤔 |
@martijnwalraven Can you take a look at this and give me a hint whether this is moving in the right direction? Thanks :) |
@stnwk Yes, sorry, I had pushed a fix for the Using |
Thanks for your input! You're right: Nesting I rebased and updated my code to support the following config: module.exports = {
client: {
service: {
name: 'My Application',
localSchemaFile: './src/schema.json',
},
},
}; I have also updated the |
Thanks, merged from 10000m altitude! |
Thanks @stnwk - needed the
|
@tsaiDavid I'm not sure this is related. Can you open up a new issue with a more detailed description? Maybe also include what your schema file looks like and your full |
Imagine the following
apollo.config.js
:This config comes from the following situation:
schema.json
locallyCurrently, this is not possible.
This PR fixes this.