> For the complete documentation index, see [llms.txt](https://docs.craft.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.craft.co/company-data-api/data-points/operating-data/untitled-3.md).

# 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

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        technologies {
            category
            description
            lastUpdatedAt
            name
            url
        }
    }
}

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