UNPKG

fauna-gql-upload

Version:

Manage your FaunaDB resources in within your project and upload them using a single command

9 lines (8 loc) 260 B
interface SchemaOptions { mode?: "merge" | "override" | "replace"; override?: boolean; schemaPath?: string; schemaDir?: string; } declare function uploadSchema(options: SchemaOptions): Promise<boolean | undefined>; export default uploadSchema;