Government Spending

Fields

Field
Type
Description
amount
​Money​
Award amount
countryCode
String
Government country code
newAwards
Int
Number of awards
period
​Period​
Period
source
​Source​
Source

Query

1
# query
2
query findCompanyByDomain($domain: String!) {
3
company(domain: $domain) {
4
govSpending {
5
amount {
6
currencyIsoCode
7
value
8
}
9
countryCode
10
newAwards
11
period {
12
displayEndDate
13
}
14
source {
15
label
16
url
17
}
18
}
19
}
20
}
21
​
22
# variables
23
{ "domain": "facebook.com" }
Copied!
Copy link
Contents
Fields
Query