naics
Overview
This query returns a list of NAICS valid values, which is a list of all the industries in which a company might operate.
Special Considerations
- Query does not require any inputs
Inputs
N/A
Returns
Promise<NAICSResult>
A promise containing the following object / data:
data: naicsData
naicsData is a list of all NAICS valid values.
Example
Running this query:
query {
naics {
data
}
}
Gives us:
{
"data": {
"naics": {
"data": [
"Abrasive Product Manufacturing",
"Accommodation",
"Accommodation and Food Services",
...
"Zoos and Botanical Gardens"
]
}
}
}
Common Errors
N/A