Designed to simplify Lodging Connectivity API integration, handles the technical complexities, empowering partners to focus on their core business needs.
With robust features and seamless integration, it enhances developer productivity, providing all necessary tools to efficiently query and mutate data from GraphQL APIs.
NPM
npm install @expediagroup/lodging-connectivity-sdk
Yarn
yarn add @expediagroup/lodging-connectivity-sdk
Once you have the SDK dependency installed, you can start using its capabilities. The SDK contains three different clients, each linked to a separate endpoint
Follow these three simple steps to start using any client in the SDK:
Build the client configuration object.
const config: ClientConfiguration = {
key: 'YOUR_API_KEY',
secret: 'YOUR_API_SECRET'
};
Initialize a client.
const supplyClient = new SupplyClient(config); // Taking SupplyClient as an example
Execute operations
supplyClient.query(/* GraphQL Query */);
// OR
supplyClient.mutate(/* GraphQL Mutation*/);
The list below lists detailed documentation files for some components of the SDK. Whether you're looking to configure the SDK, explore the pre-built GraphQL operations, or learn how to use specific clients, the following resources will guide you through all the necessary steps.