数据
{
user_id: 'abc',
movies: {
'111': {
title: 'Star Wars 1'
},
'112': {
title: 'Star Wars 2'
}
}
}
架构和解析器会是什么样子?
这是我最好的尝试,但我从未见过这样的例子,所以真的不确定。
图式
type User {
user_id: String
movies: Movies
}
type Movies {
id: Movie
}
type Movie {
title: String
}
解析器
User: {
movies(user) {
return user.movies;
}
},
Movies: {
id(movie) {
return movie;
}
}