在 graphql 中实现多个接口

Implement multiple interfaces in graphql

我正在使用中继编译器,它不允许我编译具有实现多个接口的类型的模式。我做了一个小测试项目:

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 { graphql } from "react-relay";

graphql`fragment Test_item on Something {
    a
    b
}`;

如果你 运行 使用 npm 运行 中继(在 npm 安装之后)你会得到错误:

Error: Error loading schema. Expected the schema to be a .graphql or a .json
file, describing your GraphQL server's API. Error detail:

GraphQLError: Syntax Error: Unexpected Name "Second"

知道为什么会这样吗?

对于多个界面,您应该使用 & 而不是逗号。 看这里:http://facebook.github.io/graphql/draft/#sec-Interfaces

type Something implements First & Second