Implement multiple interfaces in graphql
问题 I am using the relay compiler and it is not letting me compile a schema with a type that implements multiple interfaces. I made a small test project: package.json { "scripts": { "relay": "relay-compiler --src ./ --schema schema.graphqls" }, "dependencies": { "react-relay": "1.5.0" }, "devDependencies": { "relay-compiler": "1.5.0" } } schema.graphqls interface First { a: String } interface Second { b: String } type Something implements First, Second { a: String b: String } test.js import {