Field aliases
query {
assets(where: {id: {eq: "c500633c-2c1a-4990-afcd-274cbde93500"}}) {
definitions: stringAttributes(where: {
type: {publicId: {eq: "Definition"} }
}) {
stringValue
}
examples: stringAttributes(where: {
type: {publicId: {eq: "DescriptiveExample"} }
}) {
stringValue
}
}
}{
"data": {
"assets": [
{
"id": "c500633c-2c1a-4990-afcd-274cbde93500",
"definitions": [
{
"stringValue": "definition"
}
],
"examples": [
{
"stringValue": "example"
}
]
}
]
}
}Last updated
Was this helpful?