The reviews field has no data when using graphQL query

Hello,

Please, can anyone help me with graphQL, I use the reviews field on the query but perhaps I have no data from this
image

here is my query:

begin request

{project(where: {
id: “************************”,
}) {
labelCount
labels(first: 100, skip: 0) {
id
dataRow {
id
externalId
createdAt
globalKey

  }
  createdAt
  secondsToLabel
  secondsToCreate
  secondsToReview
  contentLastUpdatedAt
  # label    
  agreement
  createdBy {
    email
  }
  updatedAt
  
reviews {
      id
    updatedAt
    createdAt
    # secondsToReview
    createdBy {
      email
    }
  
 
  }
}

}}

end request

Hi @harimamy.rav,

Thank you for posting.
Reviews is a legacy field. Please use workflow_history from client.export_v2() instead (see in Labelbox documentation: Export v2 glossary).
We don’t advise to use GraphQL.

Best regards,
Paul N
Labelbox Support

hi @PaulN

thanks for your reply, what level of permission does an API key need to have in order to use export_v2 ?
please

Hi @harimamy.rav ,

Organization administrators and project leads can create exports (source: Roles and permissions).

Best regards,
Paul N
Labelbox Support