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

     1  # Code generated by Compass integration tests, DO NOT EDIT.
     2  query {
     3    result: applicationTemplates(first: 100, after: "") {
     4      data {
     5        id
     6        name
     7        description
     8        applicationInput
     9        placeholders {
    10          name
    11          description
    12          jsonPath
    13        }
    14        webhooks {
    15          id
    16          applicationID
    17          applicationTemplateID
    18          runtimeID
    19          formationTemplateID
    20          type
    21          mode
    22          correlationIdKey
    23          retryInterval
    24          timeout
    25          url
    26          urlTemplate
    27          inputTemplate
    28          headerTemplate
    29          outputTemplate
    30          statusTemplate
    31          auth {
    32            credential {
    33              ... on BasicCredentialData {
    34                username
    35                password
    36              }
    37              ... on CertificateOAuthCredentialData {
    38                clientId
    39                certificate
    40                url
    41              }
    42              ... on OAuthCredentialData {
    43                clientId
    44                clientSecret
    45                url
    46              }
    47            }
    48            oneTimeToken {
    49              __typename
    50              token
    51              used
    52              expiresAt
    53            }
    54            certCommonName
    55            accessStrategy
    56            additionalHeaders
    57            additionalQueryParams
    58            requestAuth {
    59              csrf {
    60                tokenEndpointURL
    61                credential {
    62                  ... on BasicCredentialData {
    63                    username
    64                    password
    65                  }
    66                  ... on OAuthCredentialData {
    67                    clientId
    68                    clientSecret
    69                    url
    70                  }
    71                  ... on CertificateOAuthCredentialData {
    72                    clientId
    73                    certificate
    74                    url
    75                  }
    76                }
    77                additionalHeaders
    78                additionalQueryParams
    79              }
    80            }
    81          }
    82          createdAt
    83        }
    84        labels
    85        accessLevel
    86      }
    87      pageInfo {
    88        startCursor
    89        endCursor
    90        hasNextPage
    91      }
    92      totalCount
    93    }
    94  }