API: Querying group SAML information via GQL instead of rest

Currently it is possible to query the groups REST endpoint, and if the group being returned contains saml_group_links, the returned group object will contain an array with the saml information.

I want to move over to using the GQL API, but I can’t find anywhere in the group spec: GraphQL API Resources | GitLab that contains the saml information. Is the saml information obtainable via GQL?

My exact gql query right now is:

{
  group(fullPath: "<groupPath>") {
    descendantGroups {
      nodes {
        id
        name
        fullPath
        description
        parent {
          id
        }
      }
      pageInfo {
        endCursor
        hasNextPage
      }
    }
  }
}

I need the group nodes to also return their saml_group_links!