For the complete documentation index, see llms.txt. This page is also available as Markdown.

Sustainability Metrics

ESG Metrics for this company

Fields

Field

Type

Description

group

String

Sustainability group

measure

String

Measurement for the sustainability metric

name

String

Name

period

Daily, Monthly, Quarterly, Semi-Annual or Annual

Source

Source Label and URL

units

Currency, Units or Percentage

value

Sting

Amount for the metric

currencyCode

Currency for the units currency

Query example

# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        sustainability {
            group
            measure
            name
            period {
              displayEndDate
              endDate
              periodType
              startDate
            }
            source {
              label
              url
            }
            units
            value               
        }
    }
}


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

Last updated

Was this helpful?