Skip to main content
Version: 2026.2

Get Linked Data

Get Car With Referenced Manufacturer and Manufacturer Logo Image Thumbnail

Configuration

info

Note that you have to adapt your schema definition as depicted below.

The thumbnail will be generated using the Thumbnail operator.

Schema DefinitionSchema DefinitionSchema Definition

Request

{
getCar(id:277, defaultLanguage:"en") {
name
frenchName: name(language: "fr")
productionYear
cylinders
manufacturer {
...on object_Manufacturer {
id
name
logo {
fullpath
}
customThumbnail
}
}
}
}

Response

{
"data": {
"getCar": {
"name": "Montreal",
"frenchName": null,
"productionYear": 1970,
"cylinders": 8,
"manufacturer": {
"id": "28",
"name": "Alfa Romeo",
"logo": {
"fullpath": "/Brand%20Logos/Alfa_Romeo_logo.png",
"filesize": 101613
},
"customThumbnail": "/Brand%20Logos/image-thumb__290__galleryLightbox/Alfa_Romeo_logo.webp"
}
}
}
}