Created
April 18, 2020 07:10
-
-
Save vladbatushkov/52cd7de1f2cceab5e906a3c9d8338df8 to your computer and use it in GitHub Desktop.
GraphQL FlightsSearchObjects query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query { | |
FlightsSearchObjects(from: "Bangkok", to: "Moscow", date:"20200101") { | |
flights { | |
flight { | |
flight_number | |
price | |
duration | |
departs_local | |
arrival_local | |
} | |
company { | |
name | |
code | |
country | |
} | |
} | |
route { | |
code | |
name | |
city | |
country | |
} | |
stops | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment