Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
最近、GraphQL を使い始めました。データベースからすべてのレコードを取得できますが、取得できるレコードは限られています (一度に 10 件など)。これを達成するために私を導いてください。ありがとう
返されるアイテムの数をパラメーターとして渡し、limitMongoDB で使用します。
limit
タイプ定義:
fields: () => { posts: { resolve: (root, params) => Post.find().limit(params.first) } }
クエリの例:
{ posts(first: 10) { id text date } }