Skip to content

Commit b8147c4

Browse files
committed
autofix: fixes from CI
1 parent b83aa26 commit b8147c4

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/pages/postgraphile/why-nullable.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,9 @@ module.exports = function NonNullRelationsPlugin(builder) {
194194
builder.hook("GraphQLObjectType:fields:field", (field, build, context) => {
195195
if (
196196
!context.scope.isPgForwardRelationField ||
197-
!context.scope.pgFieldIntrospection?.keyAttributes?.every(attr => attr.isNotNull)
197+
!context.scope.pgFieldIntrospection?.keyAttributes?.every(
198+
attr => attr.isNotNull
199+
)
198200
) {
199201
return field;
200202
}

0 commit comments

Comments
 (0)