list_questions
Find questions in a quiz or reusable question bank. Filter by quiz ID or bank ID and page through results to confirm question counts or locate a specific question.
Instructions
Find questions belonging to a quiz or to a reusable question bank.
Returns ONE PAGE. Check `has_more` - if true, call again with `next_cursor`
before telling the user how many questions exist or that one is absent.
Every question lives in a quiz XOR a bank, so `filter_quiz_id` and
`filter_question_bank_id` select disjoint sets. Answers are not included here;
use `get_question` for those.
Requires `question-banks:read` OR `quizzes:read`.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page_size | No | ||
| page_cursor | No | ||
| filter_quiz_id | No | ||
| filter_question_bank_id | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note | Yes | ||
| has_more | Yes | ||
| questions | Yes | ||
| next_cursor | No |