5

我有一个架构类型 Page ,它有一个块数组:

{
  title: 'Page',
  name: 'page',
  type: 'document',
  fields: [
    ...
    {
      title: 'Blocks',
      name: 'blocks',
      type: 'array',
      of: [
        {type: 'tileGrid'},
        {type: 'otherType'}
      ],
      options: {
        editModal: 'fullscreen'
      }
    }
  ]
}

该类型tileGrid具有以下字段:

{
      title: 'Tiles',
      name: 'tiles',
      type: 'array',
      of:  [{
        type: 'reference',
        to: [
          {type: 'tile'}
        ]
      }]
}

所以tile类型嵌套很深page.blocks[].tiles[].tile。如何在同一个查询中查询page和填写tile参考文献?

4

1 回答 1

3

由于 tile 是引用,因此您需要取消引用运算符,而不是点运算符。这应该工作:page.blocks[].tiles[]->.

于 2018-01-16T11:51:42.677 回答