You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type User {
name: String,
friends: [User] @relationship(type: "FRIEND_WITH", direction: OUT)
}
enum Direction {
IN,
OUT
}
the import will not get triggered in the Scala world. Nowhere to be precise but Java does not complain about this.
Even adding a
directive @relationship (
type: String,
direction: Direction
) on FIELD_DEFINITION
won't help because the meta-information are not telling me anything about types in the annotation.
This would need a lot of refactoring -if even possible- to get those information.
Thus my initial question was if I should remove the assumptions in the Scala test code completely.
Yes, I understand this but the problem is with
the import will not get triggered in the Scala world. Nowhere to be precise but Java does not complain about this.
Even adding a
won't help because the meta-information are not telling me anything about types in the annotation.
This would need a lot of refactoring -if even possible- to get those information.
Thus my initial question was if I should remove the assumptions in the Scala test code completely.
Originally posted by @meistermeier in #674 (comment)
The text was updated successfully, but these errors were encountered: