Court Filings

Court filings involving this company

Fields

Field

Type

Description

caseName

String

Case name

courtName

String

Court name

dateFiled

String

ISO 8601 formatted date the case was filed

dateTerminated

String

ISO 8601 formatted date the case was terminated

defendant

String

Defendant name in the case

districtName

String

District name

docketId

Int

Docket ID

natureOfSuit

String

Nature of suit

plaintiff

String

Plaintiff name in the case

Query example

# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
       courtFilings {
            caseName
            courtName
            dateFiled
            dateTerminated
            defendant
            districtName
            docketId
            natureOfSuit
            plaintiff
       }
    }
}

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

Last updated