@@ -5548,12 +5548,12 @@ public final class StarshipQuery: GraphQLQuery {
55485548 }
55495549}
55505550
5551- public final class StarshipLengthQuery : GraphQLQuery {
5551+ public final class StarshipCoordinatesQuery : GraphQLQuery {
55525552 /// The raw GraphQL definition of this operation.
55535553 public let operationDefinition =
55545554 """
5555- query StarshipLength($length: Float!) {
5556- starshipLength(length : $length ) {
5555+ query StarshipCoordinates($coordinates: [[ Float!]!] ) {
5556+ starshipCoordinates(coordinates : $coordinates ) {
55575557 __typename
55585558 name
55595559 coordinates
@@ -5562,25 +5562,25 @@ public final class StarshipLengthQuery: GraphQLQuery {
55625562 }
55635563 """
55645564
5565- public let operationName = " StarshipLength "
5565+ public let operationName = " StarshipCoordinates "
55665566
5567- public let operationIdentifier : String ? = " f890b11aaa5d41e6d53ced4549beb27b9157c8c301d47e076909262ed9edbfb1 "
5567+ public let operationIdentifier : String ? = " 8dd77d4bc7494c184606da092a665a7c2ca3c2a3f14d3b23fa5e469e207b3406 "
55685568
5569- public var length : Double
5569+ public var coordinates : [ [ Double ] ] ?
55705570
5571- public init ( length : Double ) {
5572- self . length = length
5571+ public init ( coordinates : [ [ Double ] ] ? ) {
5572+ self . coordinates = coordinates
55735573 }
55745574
55755575 public var variables : GraphQLMap ? {
5576- return [ " length " : length ]
5576+ return [ " coordinates " : coordinates ]
55775577 }
55785578
55795579 public struct Data : GraphQLSelectionSet {
55805580 public static let possibleTypes = [ " Query " ]
55815581
55825582 public static let selections : [ GraphQLSelection ] = [
5583- GraphQLField ( " starshipLength " , arguments: [ " length " : GraphQLVariable ( " length " ) ] , type: . object( StarshipLength . selections) ) ,
5583+ GraphQLField ( " starshipCoordinates " , arguments: [ " coordinates " : GraphQLVariable ( " coordinates " ) ] , type: . object( StarshipCoordinate . selections) ) ,
55845584 ]
55855585
55865586 public private( set) var resultMap : ResultMap
@@ -5589,20 +5589,20 @@ public final class StarshipLengthQuery: GraphQLQuery {
55895589 self . resultMap = unsafeResultMap
55905590 }
55915591
5592- public init ( starshipLength : StarshipLength ? = nil ) {
5593- self . init ( unsafeResultMap: [ " __typename " : " Query " , " starshipLength " : starshipLength . flatMap { ( value: StarshipLength ) -> ResultMap in value. resultMap } ] )
5592+ public init ( starshipCoordinates : StarshipCoordinate ? = nil ) {
5593+ self . init ( unsafeResultMap: [ " __typename " : " Query " , " starshipCoordinates " : starshipCoordinates . flatMap { ( value: StarshipCoordinate ) -> ResultMap in value. resultMap } ] )
55945594 }
55955595
5596- public var starshipLength : StarshipLength ? {
5596+ public var starshipCoordinates : StarshipCoordinate ? {
55975597 get {
5598- return ( resultMap [ " starshipLength " ] as? ResultMap ) . flatMap { StarshipLength ( unsafeResultMap: $0) }
5598+ return ( resultMap [ " starshipCoordinates " ] as? ResultMap ) . flatMap { StarshipCoordinate ( unsafeResultMap: $0) }
55995599 }
56005600 set {
5601- resultMap. updateValue ( newValue? . resultMap, forKey: " starshipLength " )
5601+ resultMap. updateValue ( newValue? . resultMap, forKey: " starshipCoordinates " )
56025602 }
56035603 }
56045604
5605- public struct StarshipLength : GraphQLSelectionSet {
5605+ public struct StarshipCoordinate : GraphQLSelectionSet {
56065606 public static let possibleTypes = [ " Starship " ]
56075607
56085608 public static let selections : [ GraphQLSelection ] = [
0 commit comments