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!]!
  • # Flights deleted
  • deleted: [FlightNid!]!
  • # Flights data extraction UTC timestamp
  • timestamp: Int!
  • }