Routes
Add the schema declaration
...
type Query {
route(path: String!): NodeInterface
}
type Article implements NodeInterface {
id: Int!
uid: String
title: String!
}
interface NodeInterface {
id: Int!
}
...Adding resolvers
Last updated