github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/examples/query-integration-systems/query-integration-systems.graphql (about)

     1  # Code generated by Compass integration tests, DO NOT EDIT.
     2  query {
     3    result: integrationSystems(first: 100, after: "") {
     4      data {
     5        id
     6        name
     7        description
     8        auths {
     9          id
    10          auth {
    11            credential {
    12              ... on BasicCredentialData {
    13                username
    14                password
    15              }
    16              ... on CertificateOAuthCredentialData {
    17                clientId
    18                certificate
    19                url
    20              }
    21              ... on OAuthCredentialData {
    22                clientId
    23                clientSecret
    24                url
    25              }
    26            }
    27            oneTimeToken {
    28              __typename
    29              token
    30              used
    31              expiresAt
    32            }
    33            certCommonName
    34            accessStrategy
    35            additionalHeaders
    36            additionalQueryParams
    37            requestAuth {
    38              csrf {
    39                tokenEndpointURL
    40                credential {
    41                  ... on BasicCredentialData {
    42                    username
    43                    password
    44                  }
    45                  ... on OAuthCredentialData {
    46                    clientId
    47                    clientSecret
    48                    url
    49                  }
    50                  ... on CertificateOAuthCredentialData {
    51                    clientId
    52                    certificate
    53                    url
    54                  }
    55                }
    56                additionalHeaders
    57                additionalQueryParams
    58              }
    59            }
    60          }
    61        }
    62      }
    63      pageInfo {
    64        startCursor
    65        endCursor
    66        hasNextPage
    67      }
    68      totalCount
    69    }
    70  }