【问题标题】:GraphQL cyclical reference using thunks - Error: field type must be Output Type but got: undefined使用 thunk 的 GraphQL 循环引用 - 错误:字段类型必须是输出类型,但得到:未定义
【发布时间】:2018-02-11 00:57:40
【问题描述】:

我必须解决 GraphQL 的循环定义,但由于某种原因我无法解决。我检查了几篇关于 thunk 和延迟加载的帖子,这是我当前的代码:

历史/types.js

const fields = {
    id: {
        type: new GraphQLNonNull(GraphQLID),
        resolve: (obj) => dbIdToNodeId(obj._id, "History")
    },
    timestamp: {
        type: GraphQLLong
    },
    objectId: {
        type: GraphQLString
    },
    user: {
        type: require('../User/connections').default,
        args: connectionArgs,
        resolve: (source, args) => {
            return UserModel.findOne({ id: source.id }).exec();
        }
    },
    action: {
        type: new GraphQLNonNull(GraphQLString)
    }
};

export const HistoryType = new GraphQLObjectType({
    name: 'History',
    description: 'History',
    interfaces: () => [NodeInterface],
    isTypeOf: (value) => value instanceof HistoryModel,
    fields: () => (fields)
});

历史/connections.js:

import { HistoryType } from './types';
const { connectionType: HistoryConnectionType } = connectionDefinitions( { nodeType: HistoryType });

export default HistoryConnectionType;

用户/types.js

const fields = {
    id: {
        type: new GraphQLNonNull(GraphQLID),
        resolve: (obj) => dbIdToNodeId(obj._id, "User")
    },
    email: {
        type: GraphQLString
    },
    history: {
        type: require('../History/connections').default,
        args: connectionArgs,
        resolve: (source, args, context) => {
            return HistoryModel.find({ deleted: false, objectId: source.id}).sort('timestamp').exec();
        }
    }
};

export const UserType = new GraphQLObjectType({
    name: 'User',
    description: 'User',
    interfaces: () => [NodeInterface],
    isTypeOf: (value) => value instanceof UserModel,
    fields: () => (fields)
});

用户/connections.js

import { UserType } from './types';

const { connectionType: UserConnectionType } = connectionDefinitions( { nodeType: UserType });

export default UserConnectionType;

公司/types.js

const fields = {
    id: {
        type: new GraphQLNonNull(GraphQLID),
        resolve: (obj) => dbIdToNodeId(obj._id, "Company")
    },
    name: {
        type: GraphQLString
    },
    users: {
        type: require('../User/connections').default,
        args: connectionArgs,
        resolve: (source, args) => {
            const { id } = source;
            return UserModel.find({ companyId: id }).then((rows) => connectionFromArray(rows,args));
        }
    },
    history: {
        type: require('../History/connections').default,
        args: connectionArgs,
        resolve(source, args, context) {
            return loaders.getHistory(source.id);
        }
    }
};

export const CompanyType = new GraphQLObjectType({
    name: 'Company',
    description: 'Company',
    interfaces: () => [NodeInterface],
    isTypeOf: (value) => value instanceof CompanyModel,
    fields: () => (fields)
});

公司/connections.js

import { CompanyType } from './types';

const { connectionType: CompanyConnectionType } = connectionDefinitions( { nodeType: CompanyType });

export default CompanyConnectionType;

我不能让它工作。运行时,我得到以下输出:

 History.user field type must be Output Type but got: undefined

【问题讨论】:

标签: javascript graphql relayjs graphql-js relay


【解决方案1】:

我猜你现在已经解决了,但是对于任何路过的人:
history/types.js中,fields对象必须内联在HistoryTypefields函数中,所以它是在运行时创建的。

const HistoryType = new GraphQLObjectType({
  ...
  fields: () => ({ ... }), // not a var, object is inlined
  ...
});

【讨论】:

    猜你喜欢
    • 2019-09-19
    • 2017-08-16
    • 2018-06-30
    • 2017-09-03
    • 2018-06-25
    • 2018-01-30
    • 2019-12-23
    • 2016-06-29
    • 2017-12-12
    相关资源
    最近更新 更多