-
-
Notifications
You must be signed in to change notification settings - Fork 564
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
Using callable (unresolved) fields with a long running server #1329
Comments
Use two schemas. |
@spawnia There could be hundreds of "dynamic" fields, meaning we'd have to rebuild the whole Schema on each request. This is an enormous amount of performance & request time lost for nothing. Isn't there a better way? Apps on Swoole are becoming increasingly more popular and this will only become more of a problem with time. |
This library fundamentally assumes that types are immutable once defined. It would be a lot of work (including deviating massively from the reference library!) to change this. |
Got you. I'll try to make it work by creating different Schema's and some clever caching and see if it works. Thank you. |
I would advise presenting a consistent schema to users and implement access control on top of that. Hiding fields is very bad for clients that rely on introspection as part of their tooling. |
Yes, that was my first thought. For authorization that's what we're doing - I just used this as an example. My real use case is versioning - I want to version the whole Schema based on a header. I'm aware this is not recommended but I'm not a fan of proposed solutions (like creating fields under a different name or passing a version argument to each one) - it's just not very scalable in a project that changes rapidly. |
Facebook would disagree. |
Facebook doesn't expose it's GraphQL API to the public so it's not a problem they care about. It does become one when you need to communicate to multiple API consumers, both internal and public, about changes in the API and urge them to upgrade. It's just a cleaner way of handling this, although obviously just going for never-breaking schema evolution is fine as long as you don't need any of that and are willing to deal with non optimal field names and types. |
Hey.
I initially created an issue in another project which uses
webonyx/graphql-php
- thecodingmachine/graphqlite. I'm using Swoole as an HTTP server so I'm able to share theSchema
instance across multiple requests.It all plays nicely until you're trying to have dynamic field definitions based on the request. Rarely, but sometimes this is needed, for example when you're trying to hide fields based on authorization. Normally, fields defined with callback solve this:
but there are two problems with this:
getFields()
is called it seems to workFieldDefinition
and can't returnnull
Those two are separate, but related issues. I don't think an efficient solution (one that would not require rebuilding the whole schema on each request) is there.
Thoughts?
The text was updated successfully, but these errors were encountered: