feat: Introduce InputCreator

This commit is contained in:
Ali BARIN
2021-10-11 23:22:12 +02:00
parent 981ea6d163
commit f50c09ed37
13 changed files with 196 additions and 15 deletions

View File

@@ -5,6 +5,7 @@ const appType = new GraphQLObjectType({
name: 'App',
fields: {
name: { type: GraphQLString },
key: { type: GraphQLString },
iconUrl: { type: GraphQLString },
docUrl: { type: GraphQLString },
primaryColor: { type: GraphQLString },

View File

@@ -8,6 +8,7 @@ const fieldType = new GraphQLObjectType({
type: { type: GraphQLString },
required: { type: GraphQLBoolean},
readOnly: { type: GraphQLBoolean},
value: { type: GraphQLString},
placeholder: { type: GraphQLString},
description: { type: GraphQLString},
docUrl: { type: GraphQLString},