Latest Z Score

The most recent Altman Z Score for this company

Fields

Field

Type

Description

period

Z score period (most recent value)

value

Float

Z score value (most recent)

Query example

# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        latestZScore {
            period {
                endDate
                periodType
            }
            value
        }
    }
}

# variables
{ "domain": "meta.com" }

Last updated