So I was able to solve it. What I did was I just c...
# orm-help
b
So I was able to solve it. What I did was I just created the token_item and connected it to the user like so:
Copy code
mutation {
  createTokenItems (
    data: {
      info: "foo"
      carrier: "bar"
      connect: {
        id: userId
      }   
    }
  )
}