@graphql-tools/github-loader
Version:
A set of utils for faster development of GraphQL tools
52 lines (51 loc) • 1.67 kB
TypeScript
import { Loader, BaseLoaderOptions, Source } from '@graphql-tools/utils';
import { GraphQLTagPluckOptions } from '@graphql-tools/graphql-tag-pluck';
import syncFetch from '@ardatan/sync-fetch';
import { fetch as asyncFetch } from '@whatwg-node/fetch';
/**
* Additional options for loading from GitHub
*/
export interface GithubLoaderOptions extends BaseLoaderOptions {
/**
* A GitHub access token
*/
token: string;
/**
* Additional options to pass to `graphql-tag-pluck`
*/
pluckConfig?: GraphQLTagPluckOptions;
customFetch?: typeof asyncFetch | typeof syncFetch;
}
/**
* This loader loads a file from GitHub.
*
* ```js
* const typeDefs = await loadTypedefs('github:githubUser/githubRepo#branchName:path/to/file.ts', {
* loaders: [new GithubLoader()],
* token: YOUR_GITHUB_TOKEN,
* })
* ```
*/
export declare class GithubLoader implements Loader<GithubLoaderOptions> {
canLoad(pointer: string): Promise<boolean>;
canLoadSync(pointer: string): boolean;
load(pointer: string, options: GithubLoaderOptions): Promise<Source[]>;
loadSync(pointer: string, options: GithubLoaderOptions): Source[];
handleResponse({ pointer, path, options, response, status, }: {
pointer: string;
path: string;
options: any;
response: any;
status: number;
}): Source[] | {
location: string | undefined;
document: import("graphql").DocumentNode;
}[];
prepareRequest({ owner, ref, path, name, options, }: {
owner: string;
ref: string;
path: string;
name: string;
options: GithubLoaderOptions;
}): RequestInit;
}