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 8, 2024
1 parent 5867649 commit 56deb54
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 33 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
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ public void listInfoSpots() throws Exception {
" purpose " +
" railInformation " +
" zoneLabel " +
" poster { " +
" label " +
" posterSize " +
" posterType " +
" lines " +
" } " +
" onStopPlace " +
// " poster { " +
// " label " +
// " posterSize " +
// " posterType " +
// " lines " +
// " } " +
// " onStopPlace " +
" } " +
"}\"," +
"\"variables\":\"\"}";
Expand Down Expand Up @@ -113,13 +113,13 @@ public void createInfoSpot() throws Exception {
" purpose " +
" railInformation " +
" zoneLabel " +
" poster { " +
" label " +
" posterSize " +
" posterType " +
" lines " +
" } " +
" onStopPlace " +
// " poster { " +
// " label " +
// " posterSize " +
// " posterType " +
// " lines " +
// " } " +
// " onStopPlace " +
" } " +
"}\"," +
"\"variables\":\"\"}";
Expand Down Expand Up @@ -198,13 +198,13 @@ public void updateInfoSpot() throws Exception {
" purpose " +
" railInformation " +
" zoneLabel " +
" poster { " +
" label " +
" posterSize " +
" posterType " +
" lines " +
" } " +
" onStopPlace " +
// " poster { " +
// " label " +
// " posterSize " +
// " posterType " +
// " lines " +
// " } " +
// " onStopPlace " +
" } " +
"}\"," +
"\"variables\":\"\"}";
Expand Down

0 comments on commit 56deb54

Please sign in to comment.