Browse the extensions reference

reportPackage

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.

Arguments

NameTypeDescription
reportIdString!The report to rehydrate.

Returns ReportPackage

FieldTypeDescription
idID!
nameString!
descriptionString
taxonomyIdString!
periodTypeString!
periodStartDate
periodEndDate
generationStatusString!
lastGeneratedDateTime
filingStatusString!
filedAtDateTime
filedByString
supersedesIdString
supersededByIdString
sourceGraphIdString
sourceReportIdString
sharedAtDateTime
entityNameString
aiGeneratedBoolean!
createdAtDateTime!
createdByString!
items[ReportPackageItem!]!

Example

query
{ reportPackage(reportId: "...") { id name description taxonomyId } }
curl
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 } }"}'