Skip to content
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

Change schema at runtime ? #122

Closed
jhay06 opened this issue May 17, 2024 · 4 comments
Closed

Change schema at runtime ? #122

jhay06 opened this issue May 17, 2024 · 4 comments
Labels
question Further information is requested

Comments

@jhay06
Copy link

jhay06 commented May 17, 2024

Hi would like to request or if it existing please add to documentation

Please add the option to change schema at runtime ,

in python and flask with ariadne this is possible ,

should have different schema per URL , yes i know i can define the schema and the URL before the express server runs but the thing is , everytime i have to add new schema i need to define another URL with its own createHandler option ,

i just want to add a folder directory then inside off every folder created there is api.js that defines the rootValue methods , and its own schema , the goal is to everytime we have another API we will add new folder and an api.js file and it will be accessible via url http://mydomain.com/partner/code , this code is dynamic so i only need to use this express js routing app.use('/partner/:code') to make my code accessible via request.params and this code will be equal to the partner folder where api and schemas reside

thank you

@jhay06
Copy link
Author

jhay06 commented May 17, 2024

okay got the resolution here no need to comment back thank you

@jhay06 jhay06 closed this as completed May 17, 2024
@benjie
Copy link
Member

benjie commented May 17, 2024

@jhay06 it's helpful if you share what you found for future readers.

@jhay06
Copy link
Author

jhay06 commented May 17, 2024

okay its just a simple as instead of using createHandler as a parameter i just used it as callback , i think it is really a callback

app.use("/my/path/:code", (req,res)=>{
var code = req.params.code;
var schema = require('./path/'+code+'/schema.graphql');
var api = require('./path/'+code+'/api.js')
createHandler({ schema:schema, rootValue: api() })(req,res) ;
});

@enisdenjo
Copy link
Member

You're creating brand new handlers for each request. Instead, I'd recommend using the schema property,
hwich is also a function
where you can perform your schema discovery.

@enisdenjo enisdenjo added the question Further information is requested label May 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

3 participants