Cannot Return null or non-nullable field User.Role not able to retrive relation data from prisma mutation

549 Views Asked by At

I am trying play arroud APOLO SERVER, GRAPHQL PRISMA and struct at very basic thing .. I am not able to return relation data from simple query ..

WHen i try to add user along with role id .. i am not able to get role information back

WHat i am using ?

"dependencies": {
    "apollo-server": "^2.9.3",
    "bcryptjs": "^2.4.3",
    "graphql": "^14.5.5",
    "graphql-import": "^0.7.1",
    "jsonwebtoken": "^8.5.1",
    "prisma-client-lib": "^1.34.8"
  }

for My SIMPLE QUERY ;

mutation{

  createUser(name:"tst",
  roleId:"ck0lx425n00z50782jgcl4qg8")
  {
    name
    role{
code}

Graphql returning error saying

{
  "errors": [
    {
      "message": "Cannot return null for non-nullable field User.role.",
      "locations": [
        {
          "line": 4,
          "column": 5
        }
      ],
      "path": [
        "createUser",
        "role"
      ],
      "extensions": {
        "code": "INTERNAL_SERVER_ERROR",
        "exception": {
          "stacktrace": [
            "Error: Cannot return null for non-nullable field User.role.",

GAPHQL SHCHEMA

scalar DateTime

type User {
  id: ID! 
  name: String! 
  role:Role!
  createdAt:DateTime 

}

 type Role{
   id:ID!,
   code:String!
   users:[User!]!
 }
type Query {
  users:[User!]!
  user:User!
  roles:[Role!]!
  role:Role!
}

type Mutation {
  createRole(code:String!):Role!
  createUser(name:String!,roleId:String!):User! 

 }

QUERY

function users(parent, args, context) {
    return context.prisma.uses()

}
function roles(parent,args,context){
    return context.prisma.roles()
}

MUTAIONS

function  createRole(parent,args,context,info){
     return context.prisma.createRole({
         code:args.code
     });

function  createUser(parent,args,context,info){
    return context.prisma.createUser({
        name:args.name,
        role:{
            connect:{id:args.roleId}
        }
    },info);


}

PRISMA DATAMODEL

type User {
  id: ID! @id 
  name:String! 
  createdAt:DateTime @createdAt
  role:Role! @relation(Name:"Role Assinged To User")

}

type Role{
  id:ID! @id
  code:String! 
  users:[User!]! @relation(Name:"Role Assinged To User")

}

can some body help me , how to fix is this .. I know it will be basic one that i missing out .. I am struggling to understand ? am i missing something very basic ?

1

There are 1 best solutions below

0
On

When you create roles you would need to also specify a user since you made it a requirement that can cause errors