17 lines
217 B
GraphQL
17 lines
217 B
GraphQL
#import "./System.graphql"
|
|
|
|
fragment ImageContainer on ImageContainer {
|
|
image_left
|
|
image_right
|
|
title
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
|
|
fragment ImageContainerRef on ImageContainer {
|
|
system {
|
|
...System
|
|
}
|
|
}
|