@@ -5558,7 +5558,7 @@ public final class StarshipQuery: GraphQLQuery {
55585558
55595559public final class StarshipCoordinatesQuery : GraphQLQuery {
55605560 /// The raw GraphQL definition of this operation.
5561- public let operationDefinition =
5561+ public let operationDefinition : String =
55625562 """
55635563 query StarshipCoordinates($coordinates: [[Float!]!]) {
55645564 starshipCoordinates(coordinates: $coordinates) {
@@ -5570,7 +5570,7 @@ public final class StarshipCoordinatesQuery: GraphQLQuery {
55705570 }
55715571 """
55725572
5573- public let operationName = " StarshipCoordinates "
5573+ public let operationName : String = " StarshipCoordinates "
55745574
55755575 public let operationIdentifier : String ? = " 8dd77d4bc7494c184606da092a665a7c2ca3c2a3f14d3b23fa5e469e207b3406 "
55765576
@@ -5585,7 +5585,7 @@ public final class StarshipCoordinatesQuery: GraphQLQuery {
55855585 }
55865586
55875587 public struct Data : GraphQLSelectionSet {
5588- public static let possibleTypes = [ " Query " ]
5588+ public static let possibleTypes : [ String ] = [ " Query " ]
55895589
55905590 public static let selections : [ GraphQLSelection ] = [
55915591 GraphQLField ( " starshipCoordinates " , arguments: [ " coordinates " : GraphQLVariable ( " coordinates " ) ] , type: . object( StarshipCoordinate . selections) ) ,
@@ -5611,7 +5611,7 @@ public final class StarshipCoordinatesQuery: GraphQLQuery {
56115611 }
56125612
56135613 public struct StarshipCoordinate : GraphQLSelectionSet {
5614- public static let possibleTypes = [ " Starship " ]
5614+ public static let possibleTypes : [ String ] = [ " Starship " ]
56155615
56165616 public static let selections : [ GraphQLSelection ] = [
56175617 GraphQLField ( " __typename " , type: . nonNull( . scalar( String . self) ) ) ,
0 commit comments