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"
}
}
}
}
}
構文エラー「予期される名前、文字列 'type' が見つかりました」が表示されます
私が間違っていることに助けが必要ですか?