stellate
Version:
The CLI you need to work with Stellate from your CLI. See https://docs.stellate.co/docs/cli for the complete documentation.
15 lines (11 loc) • 379 B
text/typescript
import { Plugin } from 'graphql-yoga';
interface Options {
serviceName: string;
token: string;
fetch: typeof fetch;
sendVariablesAsHash?: boolean;
schemaSyncing?: boolean;
}
declare function createBlake3Hash(str: string): number;
declare const createStellateLoggerPlugin: (opts: Options) => Plugin;
export { createBlake3Hash, createStellateLoggerPlugin };