我正在尝试使用 Hasura GraphQL API 创建对象关系。遵循文档https://docs.hasura.io/1.0/graphql/manual/api-reference/schema-metadata-api/relationship.html#create-object-relationship。这就是我所做的。
{
"type": "create_object_relationship",
"args": {
"table": "article",
"name": "article_detail",
"using": {
"manual_configuration" : {
"remote_table" : "article_detail",
"column_mapping" : {
"id" : "article_id"
}
}
}
}
}
我收到语法错误“预期名称,找到字符串‘类型’”
需要帮助我做错了什么?