如何更新Freebase中的非唯一属性



我一直在研究卡路里计数器,我在MQL写入方面进展缓慢。我目前遇到的问题是更新/common/topic/description属性中的配方本身。

我目前使用的查询是:

[{
  id: recipeId, // previously retrieved
  '/common/topic/description': {
    connect: 'replace',
    value: $('#description textarea').val(),
    lang: '/lang/en'
  }
}]

这成功地执行了,但当我在它运行后查询(另一个)时,我会得到一个错误:

{
  "domain": "global",
  "reason": "invalid",
  "message": "Unique query may have at most one result. Got 2",
  "locationType": "other",
  "location": "/common/topic/description"
}

根据文档,connect: replace对唯一属性进行更新,并插入非唯一属性。那么,我是不是因为插入了一个值而得到了它?

是否有必要删除其他值以防止出现错误?我需要知道现有的值才能删除它吗?

{
  id: recipeId,
  '/common/topic/description': {
    connect: 'delete',
    value: 'Value currently stored',
    lang: '/lang/en'
  }
}

问题与更新非唯一属性无关。您的阅读查询就是问题所在。您没有引用失败的查询,但错误消息中显示"location": "/common/topic/description"的部分是您的提示。该主题有两个描述,一个是空的,一个不是,但您在查询中没有使用数组表示法。

这将起作用:

[{
  "id": "/m/0wh83sg",
  "/food/recipe/ingredients": [{
    "id": null,
    "ingredient": {
      "id": null,
      "name": null,
      "/food/food/energy": null,
      "/common/topic/image": {
        "id": null,
        "optional": true,
        "limit": 1
      },
      "optional": true
    },
    "unit": {
      "id": null,
      "name": null,
      "optional": true
    },
    "quantity": null,
    "notes": null
  }],
  "/common/topic/description": [{}]
}]

相关内容

  • 没有找到相关文章

最新更新