@neo4j/graphql
Version:
A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations
47 lines • 1.69 kB
TypeScript
import type { ConcreteEntityAdapter } from "../schema-model/entity/model-adapters/ConcreteEntityAdapter";
import type { InterfaceEntityAdapter } from "../schema-model/entity/model-adapters/InterfaceEntityAdapter";
import type { RelationshipAdapter } from "../schema-model/relationship/model-adapters/RelationshipAdapter";
import type { RelationshipDeclarationAdapter } from "../schema-model/relationship/model-adapters/RelationshipDeclarationAdapter";
export declare function DEPRECATE_SET_MUTATION(name: string): {
name: string;
args: {
reason: string;
};
};
export declare function DEPRECATE_ARRAY_MUTATIONS(name: string, operation: "push" | "pop"): {
name: string;
args: {
reason: string;
};
};
export declare function DEPRECATE_MATH_MUTATIONS(name: string, operation: string): {
name: string;
args: {
reason: string;
};
};
export declare function DEPRECATE_AGGREGATION_FILTERS(name: string, aggregationOperation: string, operator: string): {
name: string;
args: {
reason: string;
};
};
export declare function DEPRECATE_AGGREGATION(entity: ConcreteEntityAdapter | InterfaceEntityAdapter): {
name: string;
args: {
reason: string;
};
};
export declare function DEPRECATE_NESTED_AGGREGATION(relationship: RelationshipAdapter | RelationshipDeclarationAdapter): {
name: string;
args: {
reason: string;
};
};
export declare function DEPRECATE_UPDATE_WHERE(relationship: RelationshipAdapter | RelationshipDeclarationAdapter, ifUnionMemberEntity?: ConcreteEntityAdapter): {
name: string;
args: {
reason: string;
};
};
//# sourceMappingURL=constants.d.ts.map