chore: Add active column to flows
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
430f0d07e8
commit
02cfb979bc
@@ -1,4 +1,4 @@
|
||||
import { GraphQLList, GraphQLObjectType, GraphQLString, GraphQLInt } from 'graphql';
|
||||
import { GraphQLList, GraphQLObjectType, GraphQLString, GraphQLInt, GraphQLBoolean } from 'graphql';
|
||||
import StepType from './step';
|
||||
|
||||
const flowType = new GraphQLObjectType({
|
||||
@@ -6,6 +6,7 @@ const flowType = new GraphQLObjectType({
|
||||
fields: {
|
||||
id: { type: GraphQLInt },
|
||||
name: { type: GraphQLString },
|
||||
active: { type: GraphQLBoolean },
|
||||
steps: {
|
||||
type: GraphQLList(StepType),
|
||||
}
|
||||
|
Reference in New Issue
Block a user