Entity references
Add the schema declaration
...
type Article implements NodeInterface {
id: Int!
title: String!
creator: String
tags: [TagTerm]
}
type TagTerm {
id: Int
name: String
}
...Adding resolvers
Last updated
Was this helpful?