10 lines
194 B
GraphQL
10 lines
194 B
GraphQL
fragment AcfImage on MediaItem {
|
|
src: sourceUrl @nonNull
|
|
alt: altText
|
|
mediaDetails {
|
|
width @nullToUndefined
|
|
height @nullToUndefined
|
|
}
|
|
objectPosition @nullTo(value: "center")
|
|
}
|