Я создал сервер GraphQL в сочетании с Express + MongoDB. Я начал со следующей модели данных:
const AuthorSchema = new Schema({
name: { type: String, required: true },
age: { type: Number, required: true },
});
Запросы + Мутации работают, но я решил добавить больше полей в модель данных:
const AuthorSchema = new Schema({
name: { type: String, required: true },
age: { type: Number, required: true },
bio: { type: String, required: true },
picture: { type: String, required: true }
});
Я могу добавить нового автора через мутацию с новыми полями, но по какой-то причине запросы не будут возвращать новые поля.
{
"errors": [
{
"message": "Cannot query field \"bio\" on type \"Author\".",
"locations": [
{
"line": 3,
"column": 5
}
]
}
]
}```