Skip to content
This repository was archived by the owner on May 10, 2018. It is now read-only.

Commit 2591469

Browse files
committed
feat(graphcool-ts): Allow single value for Array input types
The GraphQL spec allows you to pass in a single value for any input field that is defined as an Array. The type definitions are updated to accomodate this. Closes #10
1 parent 3ca4b70 commit 2591469

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/generators/graphcool-ts.ts

-2
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,6 @@ function renderInputObjectType(type: GraphQLObjectType | GraphQLInputObjectType
136136
return renderInterfaceWrapper(type.name, type.description, interfaces, fieldDefinition)
137137
}
138138

139-
140-
141139
function renderFieldName(field: GraphQLInputField | GraphQLField<any, any>) {
142140
return `${field.name}${isNonNullType(field.type) ? '' : '?'}`
143141
}

0 commit comments

Comments
 (0)