我觉得它应该记录在某个地方,但我找不到它。我可以通过突变将数据添加到我的数据库中,但我无法更改它。
石墨烯与 Django 一起使用,我的数据库是 SQLite
很具体,希望有人知道答案。除其他外,我尝试过:
mutation AppMutation(
$input: AddSchoolNodeInput!
) {
addSchool(input: $input) {
school {
id
name
description
}
}
}
哪里AddSchoolNodeInput!
是("U2Nob29sTm9kZToxMQ=="
是一个现有的ID):
{
"name": "edit kaas",
"description": "edit fails",
"clientMutationId":"U2Nob29sTm9kZToxMQ=="
}
它创建一个新项目并返回:
{
"data": {
"addSchool": {
"school": {
"id": "U2Nob29sTm9kZToxNA==",
"name": "edit kaas",
"description": "edit fails"
}
}
}
}