graffiti-mongoose
graffiti-mongoose copied to clipboard
It is possible to add some description to schema and to be reflected in the docs?
Overview of the Issue
In the docs of GraphiQL is no possible to see a description for the schemas.
Suggest a Fix
We could add the description for the schema like the following:
const user = new mongoose.Schema({
name: String
}, {
collection: 'This is ...',
});