OBJECT

FlightsChanges

Flights created, modified or deleted in selected period

link GraphQL Schema definition

  • type FlightsChanges {
  • # Flights created.
  • # Requires access to resource GRAPHQL_FLIGHT.
  • # Requires access to given flight
  • created: [Flight!]!
  • # Flights changed.
  • # Requires access to resource GRAPHQL_FLIGHT.
  • # Requires access to given flight
  • changed: [Flight!]!
  • # NID list of created flights. For performance reasons, it may be preferable to
  • # fetch only NIDs here and load flight details separately (e.g. via a queue)
  • # instead of using `created`.
  • createdFlightNidList: [FlightNid!]!
  • # NID list of changed flights. For performance reasons, it may be preferable to
  • # fetch only NIDs here and load flight details separately (e.g. via a queue)
  • # instead of using `changed`.
  • modifiedFlightNidList: [FlightNid!]!
  • # Flights deleted
  • deleted: [FlightNid!]!
  • # Flights data extraction UTC timestamp
  • timestamp: Int!
  • }