-
Couldn't load subscription status.
- Fork 159
[WIP] Update translation layer #6746
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Conversation
|
| throw new Error("No parent node found!"); | ||
| } | ||
| const subqueries = this.updateOperations.map((field) => { | ||
| const { clauses, projectionExpr } = field.transpile(context); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <@typescript-eslint/no-unused-vars> reported by reviewdog 🐶
'projectionExpr' is assigned a value but never used. Allowed unused vars must match /^_/u.
| import type { AuthorizationFilters } from "../filters/authorization-filters/AuthorizationFilters"; | ||
| import type { InputField } from "../input-fields/InputField"; | ||
| import type { SelectionPattern } from "../selection/SelectionPattern/SelectionPattern"; | ||
| import type { ReadOperation } from "./ReadOperation"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <@typescript-eslint/no-unused-vars> reported by reviewdog 🐶
'ReadOperation' is defined but never used. Allowed unused vars must match /^_/u.
| import type { ConcreteEntityAdapter } from "../../../../schema-model/entity/model-adapters/ConcreteEntityAdapter"; | ||
| import type { RelationshipAdapter } from "../../../../schema-model/relationship/model-adapters/RelationshipAdapter"; | ||
| import { filterTruthy } from "../../../../utils/utils"; | ||
| import { getEntityLabels } from "../../utils/create-node-from-entity"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <@typescript-eslint/no-unused-vars> reported by reviewdog 🐶
'getEntityLabels' is defined but never used. Allowed unused vars must match /^_/u.
| * limitations under the License. | ||
| */ | ||
|
|
||
| import Cypher, { e } from "@neo4j/cypher-builder"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <@typescript-eslint/no-unused-vars> reported by reviewdog 🐶
'Cypher' is defined but never used. Allowed unused vars must match /^_/u.
| * limitations under the License. | ||
| */ | ||
|
|
||
| import Cypher, { e } from "@neo4j/cypher-builder"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <@typescript-eslint/no-unused-vars> reported by reviewdog 🐶
'e' is defined but never used. Allowed unused vars must match /^_/u.
| import { asArray } from "../../../../utils/utils"; | ||
| import type { Filter } from "../../ast/filters/Filter"; | ||
| import { MutationOperationField } from "../../ast/input-fields/MutationOperationField"; | ||
| import { NodeSelectionPattern } from "../../ast/selection/SelectionPattern/NodeSelectionPattern"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <@typescript-eslint/no-unused-vars> reported by reviewdog 🐶
'NodeSelectionPattern' is defined but never used. Allowed unused vars must match /^_/u.
Update math operations to new translation layer
…pdate-populated-by-new-translation-layer
…on-layer Update populated by new translation layer
Description
WORK IN PROGRESS
Refactor of the update operations to use the new translation layer