Products and Services

United Nations Standard Products and Services Codes (UNSPSC) - https://en.wikipedia.org/wiki/UNSPSC

Fields

Field

Type

Description

code

String

UNSPSC code

name

String

UNSPSC code name

level

String

Hierarchy level: segment, family, class or commodity

Query example

# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        productAndServiceCodes {
            code
            name
            level
        }
    }
}

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

Last updated