【问题标题】:What is wrong with mutation call in Apollo GraphQL server?Apollo GraphQL 服务器中的突变调用有什么问题?
【发布时间】:2020-02-14 09:25:46
【问题描述】:

电话:

mutation {
  upvotePost(postId: 1) {
    id
  }
}

回应:

代码下方:

const { ApolloServer, gql } = require('apollo-server');

const typeDefs = `
  type Author {
    id: Int!
    firstName: String
    lastName: String
    """
    the list of Posts by this author
    """
    posts: [Post]
  }

  type Post {
    id: Int!
    title: String
    author: Author
    votes: Int
  }

  # the schema allows the following query:
  type Query {
    posts: [Post]
    author(id: Int!): Author
  }

  # this schema allows the following mutation:
  type Mutation {
    upvotePost (
      postId: Int!
    ): Post
  }
`;

// example data
const authors = [
  { id: 1, firstName: 'Tom', lastName: 'Coleman' },
  { id: 2, firstName: 'Sashko', lastName: 'Stubailo' },
  { id: 3, firstName: 'Mikhail', lastName: 'Novikov' },
];

const posts = [
  { id: 1, authorId: 1, title: 'Introduction to GraphQL', votes: 2 },
  { id: 2, authorId: 2, title: 'Welcome to Meteor', votes: 3 },
  { id: 3, authorId: 2, title: 'Advanced GraphQL', votes: 1 },
  { id: 4, authorId: 3, title: 'Launchpad is Cool', votes: 7 },
];

const resolvers = {
  Query: {
    posts: () => posts,
    author: (_, { id }) => find(authors, { id }),
  },

  Mutation: {
    upvotePost: (_, { postId }) => {
      const post = find(posts, { id: postId });
      if (!post) {
        throw new Error(`Couldn't find post with id ${postId}`);
      }
      post.votes += 1;
      return post;
    },
  },

  Author: {
    posts: author => filter(posts, { authorId: author.id }),
  },

  Post: {
    author: post => find(authors, { id: post.authorId }),
  },
};

// The ApolloServer constructor requires two parameters: your schema
// definition and your set of resolvers.
const server = new ApolloServer({ typeDefs, resolvers });

// The `listen` method launches a web server.
server.listen().then(({ url }) => {
  console.log(`????  Server ready at ${url}`);
});

【问题讨论】:

    标签: graphql apollo mutation


    【解决方案1】:

    为了使用 'find' 方法,您需要导入 lodash

    npm install lodash
    

    然后在你的文件中需要这样的lodash:

    const { find, filter } = require('lodash');
    

    【讨论】:

      猜你喜欢
      • 2020-09-11
      • 1970-01-01
      • 2021-10-04
      • 2019-06-22
      • 2023-03-05
      • 2021-05-09
      • 2020-04-24
      • 2019-06-11
      • 2017-11-07
      相关资源
      最近更新 更多