UNPKG

@neo4j/graphql

Version:

A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations

8 lines 471 B
export type SubscriptionEventType = "create" | "update" | "delete" | "create_relationship" | "delete_relationship"; type StandardType = Record<string, Record<string, unknown>>; type UnionType = Record<string, StandardType>; type InterfaceType = Record<string, unknown>; export type RecordType = Record<string, unknown>; export type RelationshipType = Record<string, Record<string, UnionType | InterfaceType | StandardType>>; export {}; //# sourceMappingURL=types.d.ts.map