你会怎么用graphql 0.7速记写一个连接?

我看到列表可以像这样写

var schema = buildSchema(`
  type Query {
    list: [Int]
  }
`);

但我看不到任何关于如何用简写写连接的文档?是目前准备用于中继的简写语法吗?

有问题的扩展 - 你会如何使用速记语法编写? / root查询 .

var userType = new GraphQLObjectType({
  name: 'User',
  description: 'A person who uses our app',
  fields: () => ({
    widgets: {
      type: widgetConnection,
      description: 'A person\'s collection of widgets',
      args: connectionArgs,
      resolve: (_, args) => connectionFromArray(getWidgets(), args),
    },
  }),
  interfaces: [nodeInterface],
});