summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/graphql_shared/fragment_types/vulnerability_location_types.js
blob: 30888e20a46df8a13de2292fbe5e613c1f9dc51a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export const vulnerabilityLocationTypes = {
  __schema: {
    types: [
      {
        kind: 'UNION',
        name: 'VulnerabilityLocation',
        possibleTypes: [
          { name: 'VulnerabilityLocationContainerScanning' },
          { name: 'VulnerabilityLocationDast' },
          { name: 'VulnerabilityLocationDependencyScanning' },
          { name: 'VulnerabilityLocationSast' },
          { name: 'VulnerabilityLocationSecretDetection' },
        ],
      },
    ],
  },
};