我在操场上有这样的景色:
但是当我尝试添加另一个选项来选择时,我点击CTRL + space
并看到了每一个可能的选项,即使是已经选择的选项。
我怎样才能阻止这种情况发生?在下拉列表中,我只想查看我仍然可以选择的选项,而不是已经选择的选项。
这是我的 index.ts
const app = express();
(async () => {
const schema = await buildSchema({ resolvers: [ UserResolvers ] });
const server = new ApolloServer({ schema });
server.applyMiddleware({ app });
createConnection({
type: 'mysql',
...dbData,
entities: [
Availability,
Chat,
Meeting,
Message,
Offer,
Tag,
User,
],
synchronize: true,
logging: true,
})
.then(() => {
app.listen({ port: 4000 }, () => {
console.log(
` Server ready at http://localhost:4000${ server.graphqlPath }`,
);
});
})
.catch((error) => console.log(error));
})();