如何使用mql更新子对象



我正在做一个卡路里计数器,我可以创建新的食谱,但我在更新配料时遇到了问题。

我可以用以下mql创建一个成分:

{
  id: recipeId,
  '/food/recipe/ingredients': {
    create: 'unless_exists',
    id: null,
    quantity: parseFloat( row.$quantity.val() ),
    unit: {
      id: row.$units.val()
    },
    ingredient: {
      id: row.ingredientId
    }
  }
}

然而,如果我更改一种成分的度量,比如从2杯更改为3杯,这个查询将创建一种新的成分。我一直在尝试更新条目。到目前为止,我已经尝试过:

{
  connect: 'update',
  id: row.rowId,
  type: '/food/recipe_ingredient',
  quantity: parseFloat( row.$quantity.val() ),
  unit: {
    id: row.$units.val()
  },
  ingredient: {
    id: row.ingredientId
  }
}

这将导致错误:Can't use [], [{}] or {} in a write

{
  connect: 'update',
  id: row.rowId,
  type: '/food/recipe_ingredient',
  quantity: parseFloat( row.$quantity.val() )
}

导致错误:Can't use 'connect' at the root of the query

 {
   id: recipeId,
   '/food/recipe/ingredients': {
     connect: 'update',
     id: row.rowId,
     type: '/food/recipe_ingredient',
     quantity: parseFloat( row.$quantity.val() )
   }
 }

我得到错误:Can't use 'connect': 'update' on a non-unique master property

{
  id: row.rowId,
  type: '/food/recipe_ingredient',
  quantity: {
    connect: 'update',
    value: parseFloat( row.$quantity.val() )                                                                                               
  }
}

导致错误:This value is already in use. Please delete it first.是删除旧成分并添加新成分的唯一方法吗?

如果唯一的方法是删除旧条目并替换它们,那么有没有任何方法可以一次删除所有成分,而不是单独使用以下查询:

{
  id: recipeId,
  '/food/recipe/ingredients': {
    connect: 'delete',
    id: row.rowId
  }
}

它不是一个"子对象",而是一个独立的节点。我建议阅读有关CVT或中介类型的文章。若要更改其属性,您需要将连接移动到内部查询。

这是我的披萨面团配方中的酵母成分节点

此查询将更新酵母的数量(假设只有一个指定酵母的成分节点):

[{
  "id": "/m/0wh8nkh",
  "/food/recipe/ingredients": [{
    "ingredient": {
      "id": "/en/yeast"
    },
    "quantity": {
      "connect": "update",
      "value": 2
    },
    "unit": {
      "id": "/en/teaspoon",
      "connect": "update"
    }
  }]
}]

但是,与其指望成分是唯一的,我建议获取并保存成分节点的ID,以便您可以在查询中明确引用它们。

其他一些注意事项:-你不应该为每个食谱都创建新的菜肴。Freebase中应该已经存在许多菜肴,您应该让用户从食谱中单独选择它们。-您需要在Dishes&您创建的配方(但不针对成分的CVT)

使用沙箱非常好,这样在调试时就不会弄乱生产数据库。

相关内容

  • 没有找到相关文章

最新更新