我看到我可以使用node.js javascript API在getentries方法中使用 include:2
传递查询对象。我该如何使用返回一个对象的getEntry
调用。
// how do I get the nested objects by passing the parameter include:1
client.getEntry('<entry_id>', {<what goes here?>})
.then(function (entry) {
// logs the entry metadata
})
getEntry
返回1,只有1个条目。如果要包含1个父条目的链接条目(又称一个以上的条目(,则必须使用getEntries
方法并指定要检索的父级条目的sys.id
。喜欢:
client.getEntries({'sys.id': '<entry_id>'})
.then(entries => {
...
})