This repository was archived by the owner on Jun 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmovieSchema.graphql
55 lines (47 loc) · 1.76 KB
/
movieSchema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
type User {
name: ID!
seen: [Movie] @relation(name: "RATED")
recommended(first:Int = 5): [Movie] @cypher(statement:"WITH $this as u MATCH (u)-->(:Movie)<--(:User)-->(reco:Movie) WHERE NOT (u)-[:RATED]->(reco) RETURN reco, count(*) as score ORDER BY score DESC LIMIT $first")
}
enum Genre {
SciFi, Drama, Horror, Family, Comedy
}
type Movie {
title: ID!
year: Int
plot: String
imdbRating: Float
poster: String
genre: [Genre]
actors: [Actor] @relation(name: "ACTED_IN", direction: "in")
directors: [Director] @relation(name: "DIRECTED", direction: "in")
similar(first:Int=5): [Movie] @cypher(statement:
"WITH $this AS this MATCH (this)<-[:DIRECTED|ACTED_IN]-(:Person)-[:DIRECTED|ACTED_IN]->(sim:Movie) RETURN sim, COUNT(*) AS freq ORDER BY freq DESC LIMIT $first")
}
interface Person {
name: ID!
born: Int
movies: [Movie]
}
type Director implements Person {
name: ID!
born: Int
movies: [Movie] @relation(name: "DIRECTED")
}
type Actor implements Person {
name: ID!
born: Int
movies: [Movie] @relation(name: "ACTED_IN")
totalMovies:Int @cypher(statement: "WITH $this as this RETURN size( (this)-[:ACTED_IN]->(:Movie) ) as total")
}
schema {
mutation: MutationType
query: QueryType
}
type QueryType {
topRatedMovies(rating:Int): [Movie] @cypher(statement: "MATCH (m:Movie)<-[r:RATED]-(:User) WHERE r.score > $score RETURN m, avg(r.rating) as score ORDER BY score DESC LIMIT 10")
moviesByName(substring:String, first: Int): [Movie] @cypher(statement: "MATCH (m:Movie) WHERE toLower(m.title) CONTAINS toLower($substring) RETURN m LIMIT $first")
}
type MutationType {
rateMovie(user:ID!,movie:ID!,score:Float=5) : String @cypher(statement:"MATCH (u:User {name:$user}), (m:Movie {title:$movie}) MERGE (u)-[r:RATED]->(m) SET r.score = $score")
}