Let's say I have the following typedef:
interface Node {
id: ID!
}
type Foo implements Node {
id: ID!
quantity: Int
}
type Bar implements Node {
id: ID!
name: String
}
Every ID I send out, I want to process in the same way. Currently I need some resolver like:
{
// ...
Foo: {
id: (root) => encodeId(root.id, root.type),
// ...
},
Bar: {
id: (root) => encodeId(root.id, root.type),
// ...
},
// ...
}
With many types implementing Node
, this results in a lot of code duplication and it would be quite easy for a dev to forget the correct way to encode the ids, or forget to encode them all together.
Is there some way to do something like this?
{
// ...
Node: {
__resolveType: (root) => root.type,
id: (root) => encodeId(root.id, root.type)
},
// ...
}
Such that Foo
, Bar
and any other implementation of Node
would inherit the id
resolver?
This is an interesting question. I am not sure a resolver for an interface will accept anything other than
__resolveType
.I occasionally run into something like this but I fix it with default and composed resolvers.
For example, for Node, you could have the following default resolvers:
Then you could implement the other as follows:
This also helps to decouple your resolver logic from the resolver definitions. I would recommend that as a project grows. You could also work in resolver composition (see https://www.apollographql.com/docs/graphql-tools/resolvers.html#graphql-resolvers).
You just need to make sure you have access to the object spread. You should anyway. It's very helpful.