为什么 Strapi 为关系带来限制数据?

Why Strapi bring limit data for relations?

我正在使用 graphQlStrapi,我有一个 question table 和一个 question-option table,我写了一个查询按关系为我带来数据。除了那些有 10 个以上选项的问题外,所有事情都正常进行。它只带来 10 个选项而不是更多。

我的查询:

query {
    questions(filters: {for: {contains: "owner"}}) {
      data {
        id
        attributes {
          number
          mode
          for
          description
          title
          question_options {
            data {
              id
              attributes {
                option
                score
                status
              }
            }
          }
          style_template {
            ... on ComponentQuestionerImageWithTitleColor {
              imageType
              color
              image {
                data {
                  attributes {
                    url
                  }
                }
              }
            }
          }
        }
      }

    }
  }

这是我的table:

这是检索项目时的默认配置,如前所述,您需要为超过 10 个项目实现分页 here

documents(pagination: { start: 20, limit: 30 }) {