Open aputinski opened 7 years ago
I have a Group type with an owner field that connects to user. If call getUser() with the id of the group, the user is returned.
Group
owner
getUser()
Query:
{ getUser(id: "GROUP_ID") { id } }
Returns
{ "data": { "getUser": { "id": "USER_UD" } } }
I would expect null to be returned since no user with that id exists.
null
I have a
Group
type with anowner
field that connects to user. If callgetUser()
with the id of the group, the user is returned.Query:
Returns
I would expect
null
to be returned since no user with that id exists.