typhon-project / typhonql

Typhon Query Language
Eclipse Public License 2.0
4 stars 1 forks source link

Improve bidirectional support #21

Closed DavyLandman closed 4 years ago

DavyLandman commented 5 years ago
insert 
  @pablo User { 
    name: "Pablo"
  },
  @radio Product {
    name: "Radio", 
    description: "Wireless"
  },
  @badradio Review { 
    contents: "Bad radio",
    product: radio,
    user: pablo
  }

this should work, but currently it only inserts into the review database, but not the back-edges in the project and user side..