Fetching ETABS analysis results using GraphQL

I am trying to fetch Analysis Results from my ETABS model using GraphQL, I am trying to test on Apollo Server, but I cannot find in the documentation for the query I need, did I miss anything? How can I fetch this information?

Update: I found the analysis results by using this

query ObjectDataQuery($projectId: String!, $objectId: String!) {
  project(id: $projectId) {
    object(id: $objectId) {
      data
      }
    }
  }

The returned data give me a lot of results; is there a way I can filter the data returned to get only analysisResults? and furthermore, filter to get specific result in analysisResults?

Hi @phong.duong,

I noticed you tagged Help for legacy v2 ETABS. Any reason why you aren’t using the v3 connector for exporting analysis results? The commit structures are slightly differnt (v2 / v3) hence my question before we go into the query specifics.

Regards,
Björn

hi @bjoern , sorry, I put in wrong category, I have made the question here. We can close this discussion on this category

Fetching ETABS analysis results using GraphQL - Speckle Help - Speckle Community

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.