Skip to content

Commit

Permalink
remove unimplemented relations from GraphQL definitions for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Leitsi committed Jul 5, 2024
1 parent 5867649 commit 32404f5
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,12 @@ public GraphQLObjectType createObjectType(GraphQLInterfaceType stopPlaceInterfac
.field(newFieldDefinition()
.name(DISPLAY_TYPE)
.type(displayTypeEnum))
.field(newFieldDefinition()
.name(POSTER)
.type(new GraphQLList(posterObjectType)))
.field(newFieldDefinition()
.name(ON_STOP_PLACE)
.type(new GraphQLList(GraphQLString)))
// .field(newFieldDefinition()
// .name(POSTER)
// .type(new GraphQLList(posterObjectType)))
// .field(newFieldDefinition()
// .name(ON_STOP_PLACE)
// .type(new GraphQLList(GraphQLString)))
.build();
}

Expand Down Expand Up @@ -186,12 +186,12 @@ public GraphQLInputObjectType createInputObjectType(GraphQLInputObjectType valid
.field(newInputObjectField()
.name(DISPLAY_TYPE)
.type(displayTypeEnum))
.field(newInputObjectField()
.name(POSTER)
.type(new GraphQLList(posterObjectType)))
.field(newInputObjectField()
.name(ON_STOP_PLACE)
.type(new GraphQLList(GraphQLString)))
// .field(newInputObjectField()
// .name(POSTER)
// .type(new GraphQLList(posterObjectType)))
// .field(newInputObjectField()
// .name(ON_STOP_PLACE)
// .type(new GraphQLList(GraphQLString)))
.build();

}
Expand Down

0 comments on commit 32404f5

Please sign in to comment.