Graphql Work Order Production Reporting

Hi,

I have SAGEX3 release/12.17.0 build 33 and i'm trying to run the following graphql query:

{
  xtremX3Manufacturing {
   workOrderProductionReporting{
      query{
          edges{
              node{
                   workOrderProductionReportingLines{
                      query{
                          edges{
                              node{
                                  lot
                              }
                          }
                      }}}}}}}}
 

and i am getting the error in the workOrderProductionReportingLines query 

"message""An error has occurred. Please contact your administrator.",
            "locations": [
                {
                    "line"11,
                    "column"23
                }
            ],
but if i execute only (without the ...ReportingLines)

{
  xtremX3Manufacturing {
   workOrderProductionReporting{
      query{
          edges{
              node{
                  trackingNumber
                  }}}}}
}

It runs without any problem.

Any solution for this?

Thanks!