returns ReportPackage
Rehydrate a Report as a package.
Report metadata plus one rendered Information Block envelope per
attached FactSet, so a whole published report is read in a single
round trip rather than one statement call per block.
| Name | Type | Description |
|---|---|---|
| reportId | String! | The report to rehydrate. |
| Field | Type | Description |
|---|---|---|
| id | ID! | — |
| name | String! | — |
| description | String | — |
| taxonomyId | String! | — |
| periodType | String! | — |
| periodStart | Date | — |
| periodEnd | Date | — |
| generationStatus | String! | — |
| lastGenerated | DateTime | — |
| filingStatus | String! | — |
| filedAt | DateTime | — |
| filedBy | String | — |
| supersedesId | String | — |
| supersededById | String | — |
| sourceGraphId | String | — |
| sourceReportId | String | — |
| sharedAt | DateTime | — |
| entityName | String | — |
| aiGenerated | Boolean! | — |
| createdAt | DateTime! | — |
| createdBy | String! | — |
| items | [ReportPackageItem!]! | — |
{ reportPackage(reportId: "...") { id name description taxonomyId } }curl -X POST "https://api.robosystems.ai/extensions/$GRAPH_ID/graphql" \
-H "X-API-Key: $ROBOSYSTEMS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "{ reportPackage(reportId: \"...\") { id name description taxonomyId } }"}'