I’m facing a problem. When I create a post and try to connect the user id of the creator to that post, I get this error:
Here is the schema:
type Post {
title: String!
description: String
images: [Image!]
videos: [Video!]
type: String,
createdBy: User!,
likes: [User!],
comments: [Comment!]
}