Magidoc

launchesPastResult
Query

Arguments

#

limit

offset

order

sort

Response

#

Returns LaunchesPastResult .

Example

#

    query (
  $find: LaunchFind
  $limit: Int
  $offset: Int
  $order: String
  $sort: String
) {
  launchesPastResult(
    find: $find
    limit: $limit
    offset: $offset
    order: $order
    sort: $sort
  ) {
    data {
      details
      id
      is_tentative
      launch_date_local
      launch_date_unix
      launch_date_utc
      launch_success
      launch_year
      mission_id
      mission_name
      static_fire_date_unix
      static_fire_date_utc
      tentative_max_precision
      upcoming
    }
    result {
      totalCount
    }
  }
}

  

3