Files
animethemes-server/app/GraphQL/Schemas/Pivot/Wiki/studioimage.graphql
T
2025-05-12 02:07:27 -03:00

9 lines
332 B
GraphQL

"Represents the association between a studio and an image."
type StudioImage {
studio: Studio!
image: Image!
"The date that the resource was created"
createdAt: DateTimeTz @rename(attribute: "created_at")
"The date that the resource was last modified"
updatedAt: DateTimeTz @rename(attribute: "updated_at")
}