-
Notifications
You must be signed in to change notification settings - Fork 16
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
Extend field types when in reference #39
Comments
Hey Mubarak, thanks for starting the issue 😁 const userExtend = g.interface('UserExtend', {
createdAt: g.string(),
updatedAt: g.string()
});
const userType = g.type('User', {
id: g.string(),
email: g.string(),
name: g.string().optional(),
}).implements(userExtend) |
Hi Mish! Thanks for your comment and suggestion. Using interfaces is certainly another way to extend the schema definition without duplicating the fields. In this case, we chose to use the extend method because it allows us to keep the schema definition in one place (userType object) and extend it only where necessary (userQueryType object). However, I can see how using interfaces can be useful in some scenarios, especially if we have multiple types that need to share the same extended fields. It's always good to have multiple options and use the one that fits the situation best. Thanks again for your input! |
The problem is that you would end up extending the types here and there and then question yourself, why does the userType suddenly have x and y fields and where do they even come from? Then you will have to search all of your code to find that it's the userQueryType that did that We can accept it as a schema manipulation utility, but not as a user-facing tool that we would suggest using |
The GraphQL spec describes a concept of extensions. We will have to support it as well, if we want to be compatible with the spec https://spec.graphql.org/October2021/#sec-Object-Extensions I will update my |
Added in 0.6.3 |
Example:
This issue pertains to the
userQueryType
object and proposes extending it to include additional fields,createdAt
andupdatedAt
, without duplicating the schema definition.The text was updated successfully, but these errors were encountered: