31 lines
458 B
GraphQL
31 lines
458 B
GraphQL
fragment MetadataImageConnection on SeoMetadata {
|
|
imageConnection {
|
|
edges {
|
|
node {
|
|
dimension {
|
|
height
|
|
width
|
|
}
|
|
url(transform: { width: "1200" })
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fragment Metadata on SeoMetadata {
|
|
noindex
|
|
description
|
|
title
|
|
imageConnection {
|
|
edges {
|
|
node {
|
|
dimension {
|
|
height
|
|
width
|
|
}
|
|
url(transform: { width: "1200" })
|
|
}
|
|
}
|
|
}
|
|
}
|