Update the graphql resolver
### Context
For the group-level view of the Vulnerability Report, we exclude archived projects.
However, the project filter list includes archived projects as selections:

We want to exclude archived projects from that list.
The list is populated by a graphql call ([`security_dashboard/graphql/queries/group_projects.query.graphql`][1])
That resolver ultimately ends up calling the finder which was updated in gitlab-org/gitlab#438813 to accept a new filter param (`include_archived`) ([`src`][0]).
### This Task
This Task is to expose the new `include_archived` filter param in the graphql endpoint
As the existing behavior of this endpoint is to include archived projects, the default for the new param should be `include_archived: true` to keep any other usages of this graphql endpoint unaffected.
[0]:https://gitlab.com/gitlab-org/gitlab/-/blob/b1f2a2d85e2f920b1e0a98f71d1d29a9aed3fc5c/app/graphql/resolvers/namespace_projects_resolver.rb
[1]:https://gitlab.com/gitlab-org/gitlab/-/blob/b1f2a2d85e2f920b1e0a98f71d1d29a9aed3fc5c/ee/app/assets/javascripts/security_dashboard/graphql/queries/group_projects.query.graphql#L4
task