Scorecards

Scorecards are a great way to get a quick overview of a household's financial health.

The Scorecard

  • Name
    er
    Type
    Float
    Description

    Equity Rate score.

  • Name
    ir
    Type
    Float
    Description

    Insurance Rate score.

  • Name
    sr
    Type
    Float
    Description

    Savings Rate score.

  • Name
    br
    Type
    Float
    Description

    Burn Rate score.

  • Name
    dr
    Type
    Float
    Description

    Debt Rate score.

  • Name
    tr
    Type
    Float
    Description

    Tax Rate score.

  • Name
    lt
    Type
    Float
    Description

    Liquid Term score.

  • Name
    qt
    Type
    Float
    Description

    Qualified Term score.

  • Name
    rt
    Type
    Float
    Description

    Real Estate Term score.

  • Name
    tt
    Type
    Float
    Description

    Total Term score.


queryscorecard

Fetching a scorecard for a household

This query will return a scorecard for a household.

Required arguments

  • Name
    householdID
    Type
    ID!
    Description

    The ID of the household to fetch a scorecard for.

Request

query Scorecard($householdID: ID!) {
  scorecard(householdID: $householdID) {
    er
    ir
    sr
    br
    dr
    tr
    lt
    qt
    rt
    tt
  }
}