@neo4j/graphql
Version:
A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations
13 lines • 444 B
TypeScript
import type { DocumentNode, ObjectTypeDefinitionNode } from "graphql";
type DocumentToAugment = {
document: DocumentNode;
typesExcludedFromGeneration: {
jwt?: {
type: ObjectTypeDefinitionNode;
jwtFieldsMap: Map<string, string>;
};
};
};
export declare function makeDocumentToAugment(document: DocumentNode): DocumentToAugment;
export {};
//# sourceMappingURL=make-document-to-augment.d.ts.map