Skip to main content

Quick settup

You can easily integrate Rsseach to your project with our GraphQL API!

It's fast, flexible, and reliable — with zero-runtime.

Introductions

To interact with the Reachu GraphQL API, you need to create a channel on the Reachu platform.

1. Create a Reachu account here:

https://test.reachu.io/

2. Create a GraphQL Channel:

3. Get you Api key for development:

Initialization of you GraphQL Client

The SdkClient is the root class of the SDK. It is the main entry point of the SDK. It is the only class that you need to instantiate in order to use the SDK. To instantiate SdkClient, you can run the following command:

import { GraphQLClient, gql } from 'graphql-request';

const endpoint = 'https://graph-ql-dev.reachu.io/';
const client = new GraphQLClient(endpoint);
const headers = {
Authorization: '<API Key Here>',
};