Court Filings
Court filings involving this company
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
query findCompanyByDomain($domain: String!) {
company(domain: $domain) {
courtFilings {
caseName
courtName
dateFiled
dateTerminated
defendant
districtName
docketId
natureOfSuit
plaintiff
}
}
}
# variables
{ "domain": "facebook.com" }
Last modified 3yr ago