Michael Hunger
Michael Hunger
I think we could do it like this ``` type Friendship @relation(name:"FRIEND_OF") { from: Person to: Person friend_since: Int } type User { name friends: [Friendship] } { User(name:"Jane") {...
How would you model it on the graphql side?
Additional fields or interface? Or union?
That would be amazing, thanks so much @lukehefson Btw. I love your "small-ux-wins" (papercuts) project, that has already improved my GH experience a lot.
How did you install it?
Thanks a lot for the feedback, I think it's because of the input object. Could you do me a favor and try with a simple mutation that just uses scalars....
Sounds great, thanks so much ! sorry was away over the weekend so I didn't see your initial issue immediately.
Your original issue looked like a missing/incorrect mutation name?
Can you share more about your JSON format (an example) and your mutation?
This looks good to me. What graphql-api is your backend running? The schema should be a bit more complete, it misses ShipRate, and the query types.