shipiak

Results 1 issues of shipiak

Hi! consider following schema: ``` type BoxImage implements ContentBox { id: String image: String } interface ContentBox{ id: String } type Query { contentBoxById(id: String): ContentBox } ``` Type BoxImage...