尝试使用 GraphQL 从 Monday.com 中的特定列获取值

问题描述 投票:0回答:1

我有一个列名称“XYZ”,我需要从板上的所有组中获取值/数据

query {
  boards (ids: 12345) {
    items  {
      id
      name
      column_values {
         id: XYZ,
         title: Name XYZ
      }
    }
  }
}

上面是我尝试使用的 GraphQl 查询,但它会导致错误

错误”:[ { “message”:““Board”类型中不存在“items”字段”,

graphql postman monday.com
1个回答
0
投票

你需要尝试下面的方法,

query {
  boards (ids: 12345) {
     id
      name
      columns{
        id
        description
      }
     
  }
}

您可以在 API Playground

尝试此操作
© www.soinside.com 2019 - 2024. All rights reserved.