From 8e294e10fc7e2a0cf3f380f73cb7e774ed4adafa Mon Sep 17 00:00:00 2001 From: mobsean <32038980+mobsean@users.noreply.github.com> Date: Wed, 3 Mar 2021 21:06:08 +0100 Subject: [PATCH] Update example typeDef see https://github.com/neo4j-graphql/neo4j-graphql-js/commit/c9b8b1af65ea751d060be79f8ab9d521577968de --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a39eaa05..21ced657 100755 --- a/README.md +++ b/README.md @@ -27,11 +27,11 @@ type Movie { title: String year: Int imdbRating: Float - genres: [Genre] @relation(name: "IN_GENRE", direction: "OUT") + genres: [Genre] @relation(name: "IN_GENRE", direction: OUT) } type Genre { name: String - movies: [Movie] @relation(name: "IN_GENRE", direction: "IN") + movies: [Movie] @relation(name: "IN_GENRE", direction: IN) } `; ```