Skip to content

Commit 57349f4

Browse files
committed
line 119 now is 80-characters long
1 parent 0ce319d commit 57349f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/node/node.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ export function globalIdField(
115115
name: 'id',
116116
description: 'The ID of an object',
117117
type: new GraphQLNonNull(GraphQLID),
118-
resolve: (obj,args,info) => toGlobalId(typeName, idFetcher ? idFetcher(obj,info) : obj.id)
118+
resolve: (obj,args,info) =>
119+
toGlobalId(typeName, idFetcher ? idFetcher(obj,info) : obj.id)
119120
};
120121
}

0 commit comments

Comments
 (0)