Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Cannot read property 'unshift' of undefined" #24

Open
Brightosman opened this issue Mar 28, 2021 · 1 comment
Open

"Cannot read property 'unshift' of undefined" #24

Brightosman opened this issue Mar 28, 2021 · 1 comment

Comments

@Brightosman
Copy link

GRAPHQL > RESOLVERS > COMMENTS.JS

        if (post) {
        ** post.comments.unshift({ **
            body,
            username,
            createdAt: new Date().toISOString()
          });
          await post.save();
          return post;
        } else throw new UserInputError('Post not found');
@zhaiyuxin103
Copy link

models -> Post.js

const postSchema = new Schema({
  body: String,
  username: String,
  createdAt: String,
- comment: [
+ comments: [
    {
      body: String,
      username: String,
      createdAt: String,
    },
  ],
  likes: [
    {
      username: String,
      createdAt: String,
    },
  ],
  user: {
    type: Schema.Types.ObjectId,
    ref: "users",
  },
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants