The query below returns the Data Link for Dun & Bradstreet results for the provided address.
query placesByBuildingAddress {
getByAddress(address: "7304 E 29TH AVE Denver CO") {
datalinkDunAndBradstreet {
data {
placeId
vintage
linkId
linkIdVintage
linkIdType
preciselyId
preciselyIdVintage
parentPreciselyId
}
}
}
}The query below is an example of starting with a Duns & Bradstreet DUNS_ID and retrieving Data Link attributes as well as supplementary Precisely data embedded in nested objects.
query placesByBuildingAddress {
getByAddress(address: "7304 E 29TH AVE Denver CO") {
datalinkDunAndBradstreet {
data {
preciselyId
linkId
linkIdType
places {
data {
businessName
web
phone
sic8Description
subClass
}
}
}
}
}
}