Schema

The TravelgateX GraphQL API Schema is a powerful way to access all of our functionalities as you need them. GraphQL allows you to ask for the exact information you need, so that you get responses that can be used in your clients (applications, websites and other interfaces) directly, without having to parse information from long-winded or cluttered API responses.

The Schema enables two main operations: - Queries: Queries are “read only” and are used to get data from our system. For example, getting a list of available hotel vacancies for a particular date and location is a Query - Mutations: Mutations change, add or delete the data in our system. For example, making a booking for a vacant hotel room is a Mutation.