Browse the extensions reference

mappedTrialBalance

returns MappedTrialBalance

Trial balance rolled up to reporting concepts via mapping associations.

Arguments

NameTypeDescription
mappingIdString!The mapping whose associations roll accounts up to reporting concepts. Omit for the active mapping.
startDateDateStart of the posting window (inclusive).
endDateDateEnd of the posting window (inclusive).

Returns MappedTrialBalance

Trial balance rolled up to reporting concepts via mapping associations.

FieldTypeDescription
mappingIdString!
rows[MappedTrialBalanceRow!]!

Example

query
{ mappedTrialBalance(mappingId: "...") { mappingId } }
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": "{ mappedTrialBalance(mappingId: \"...\") { mappingId } }"}'