@neo4j/graphql
Version:
A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations
10 lines • 424 B
TypeScript
type SubscriptionsEventType = "create" | "update" | "delete";
type EventMetaParameters = {
event: SubscriptionsEventType;
nodeVariable: string;
typename: string;
};
export declare function createEventMeta(params: EventMetaParameters): string;
export declare function createEventMetaObject({ event, nodeVariable, typename }: EventMetaParameters): string;
export {};
//# sourceMappingURL=create-event-meta.d.ts.map