mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
32 lines
683 B
TypeScript
32 lines
683 B
TypeScript
import dataProvider from "./dataProvider";
|
|
export default dataProvider;
|
|
|
|
export * from "./dataProvider";
|
|
export * from "./liveProvider";
|
|
|
|
export {
|
|
GraphQLClient,
|
|
batchRequests,
|
|
gql,
|
|
rawRequest,
|
|
request,
|
|
resolveRequestDocument,
|
|
} from "graphql-request";
|
|
|
|
export type {
|
|
BatchRequestDocument,
|
|
BatchRequestsExtendedOptions,
|
|
BatchRequestsOptions,
|
|
ClientError,
|
|
GraphQLWebSocketClient,
|
|
RawRequestExtendedOptions,
|
|
RawRequestOptions,
|
|
RequestDocument,
|
|
RequestExtendedOptions,
|
|
RequestOptions,
|
|
Variables,
|
|
} from "graphql-request";
|
|
|
|
export * as qqlQueryBuilder from "gql-query-builder";
|
|
export * as graphqlWS from "graphql-ws";
|