Unknown column 'getContent.movie_id' in 'field list
问题 my whole schema const Films = new GraphQLObjectType({ name: 'films', interfaces: () => [MovieStream], fields: () => ({ movie_id: { type: GraphQLString, }, id:{ type: GraphQLID }, name: { type: GraphQLString, }, }) }) Films._typeConfig = { sqlTable: "films", uniqueKey: 'id', } const MovieStream = new GraphQLInterfaceType({ name: 'MovieStream', fields: () => ({ id: { type: GraphQLID, }, movie_id: { type: GraphQLString, }, }) }) MovieStream._typeConfig = { sqlTable: "movie_streams", uniqueKey: