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
- : [Flight!]!
- # Flights changed.
- # Requires access to resource GRAPHQL_FLIGHT.
- # Requires access to given flight
- : [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`.
- : [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`.
- : [FlightNid!]!
- # Flights deleted
- : [FlightNid!]!
- # Flights data extraction UTC timestamp
- : Int!
- }