Skip to content

Latest commit

 

History

History
72 lines (40 loc) · 3.62 KB

CHANGELOG.md

File metadata and controls

72 lines (40 loc) · 3.62 KB

@neo4j/introspector

4.0.0

Major Changes

Minor Changes

3.0.1

Patch Changes

3.0.0

Major Changes

  • #4410 a76c9c9 Thanks @angrykoala! - Change @relationshipProperties to target types instead of interfaces:

    Instead of defining relationship properties in an interface, they must be defined as a type:

    type Actor {
        name: String!
        actedIn: [Show!]! @relationship(type: "ACTED_IN", direction: OUT, properties: "ActedIn")
    }
    
    type ActedIn @relationshipProperties {
        screenTime: Int
    }
  • #4441 6653a9e Thanks @a-alle! - Introduce new properties field in connection edges field for relationship properties.

2.0.0

Major Changes

  • #2773 7462b9715 Thanks @angrykoala! - Deprecated @node directive arguments label and additionalLabels have been removed. Please use the labels argument.

Patch Changes

2.0.0-beta.1

Patch Changes

2.0.0-beta.0

Major Changes

  • #2834 8d3aff007 Thanks @a-alle! - Deprecated @node directive arguments label and additionalLabels have been removed. Please use the labels argument.

1.0.3

Patch Changes

1.0.2

Patch Changes