mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
enable blank Input schemas (for when no editableBy or insertableBy fields are defined)
This commit is contained in:
parent
7a66e0f9a7
commit
59f4f6a8df
1 changed files with 2 additions and 2 deletions
|
@ -147,10 +147,10 @@ export const GraphQLSchema = {
|
|||
|
||||
graphQLSchema += `
|
||||
input ${collectionName}Input {
|
||||
${inputSchema.join('\n ')}
|
||||
${inputSchema.length ? inputSchema.join('\n ') : '_blank: Boolean'}
|
||||
}
|
||||
input ${collectionName}Unset {
|
||||
${unsetSchema.join('\n ')}
|
||||
${inputSchema.length ? unsetSchema.join('\n ') : '_blank: Boolean'}
|
||||
}
|
||||
`
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue