Links

Filing

Fields

Field
Type
Description
craftUrl
String
URL for report on the Craft side
period
Period
Period - Quarterly or Annual
secUrl
String
URL for the filing in the SEC database

Query Example

# query
query findCompanyByDomain($domain: String!) {
company(domain: $domain) {
filings {
craftUrl
period {
periodType
endDate
}
secUrl
}
}
}
# variables
{ "domain": "meta.com" }