Links

Technology Stack

The technologies this company uses in their technology stack

Fields

Field
Type
Description
category
String
Category name
description
String
Description of technology used
lastUpdatedAt
String
ISO 8601 formatted updated time
name
String
Technology name
url
String
Technology URL

Query example

# query
query findCompanyByDomain($domain: String!) {
company(domain: $domain) {
technologies {
category
description
lastUpdatedAt
name
url
}
}
}
# variables
{ "domain": "meta.com" }