2

リレーでクエリを作成しています。ユーザーデータベースは次のように設定されています。


function User(id, name, des) {
  this.id = id.toString()
  this.name = name
  this.des = des
}

var users = [new User(1, 'abc', 'Hello abc'), new User(2, 'xyz', 'Hello xyz')]

module.exports = {
  User: User,
  getAnonymousUser: function() {return users[0] }
}

schema.js ファイルは次のとおりです。

var nodeDefinitions = GraphQLRelay.nodeDefinitions(function(globalId) {
  var idInfo = GraphQLRelay.fromGlobalId(globalId)
  if (idInfo.type == 'User') {
    return db.getUser(idInfo.id)
  } 
  return null
})


var userType = new GraphQL.GraphQLObjectType({
  name: 'User',
  description: 'A person who uses our app',
  isTypeOf: function(obj) { return obj instanceof db.User },

  fields: function() {
    return {
      id: GraphQLRelay.globalIdField('User'),
      des: {
        type: GraphQL.GraphQLString,
        description: 'The des of the user',
      },
      name: {
        type: GraphQL.GraphQLString,
        description: 'The name of the user',
      }
    }
  },
  interfaces: [nodeDefinitions.nodeInterface],
})

module.exports = new GraphQL.GraphQLSchema({
  query: new GraphQL.GraphQLObjectType({
    name: 'Query',
    fields: {
      node: nodeDefinitions.nodeField,
      user: {
        type: userType,
        resolve: function() { return db.getAnonymousUser() },
      },
    },
  }),
})

リレー コンテナを次のように作成しました。

exports.Container = Relay.createContainer(App, {
  fragments: {
    user: () => Relay.QL`
        fragment on User {
            name
        }
    `,
  },
})

exports.queries = {
  name: 'AppQueries',
  params: { 
   userID: '1',
  },
  queries: {
    //user: () => Relay.QL`query { user }`,
    user: () => Relay.QL `query { user(id: $userID) }`
  },
}

しかし、userId でユーザーを取得できず、npm run build コマンドの実行時に次のエラーが発生します。

エラー: タイプ "Query" のフィールド "user" に不明な引数 "id" があります。ファイル: App.js ソース: >

クエリ アプリ { user(id: $userID) } ^^^^

-----------------------enter code here

誰かがこの問題について私たちを助けることができますか?

4

1 に答える 1

4

あなたのスキーマは、ユーザーフィールドの引数を定義していません:

 user: {
   type: userType,
   resolve: function() { return db.getAnonymousUser() },
 },

idID でユーザーを取得するには、引数を定義し、その ID でユーザーを取得します。

user: {
  args: {
    id: { type: GraphQLString }
  },
  resolve: function(root, args) {
    return db.findUserById(args.id); // you don't have this method but it's an example of how to use the arg
  }
}
于 2015-12-09T17:28:57.370 に答える