Competitors
The top competitors for this company

Fields

Field
Type
Description
companyType
​CompanyTypeEnum​
Company type of competitor
displayName
String
Name of competitor
id
ID
Internal Craft company ID of competitor
logo
​Image​
Logo of competitor
shortDescription
String
Short description of competitor
slug
String
Company slug of competitor
tags
[Tag]
The list of tags for competitor

Query example

1
# query
2
query findCompanyByDomain($domain: String!) {
3
company(domain: $domain) {
4
competitors {
5
displayName
6
logo {
7
url
8
}
9
shortDescription
10
slug
11
tags {
12
name
13
}
14
}
15
}
16
}
17
​
18
# variables
19
{ "domain": "stripe.com" }
Copied!
Copy link