Skip to content

Commit

Permalink
Fixed issue where node.id was infered with a different name (ChilliCr…
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib authored May 8, 2020
1 parent 3e2307d commit ca46ac3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ public IObjectFieldDescriptor NodeResolver(
});

return _typeDescriptor.Field(_propertyOrMethod)
.Type<NonNullType<IdType>>();
.Type<NonNullType<IdType>>()
.Name("id");
}
}
}

0 comments on commit ca46ac3

Please sign in to comment.