Sha256: 733e6f174c62f8e3d46f7b21de70daf7c4d6a411dd64437d50429ced30da54ec

Contents?: true

Size: 720 Bytes

Versions: 2

Compression:

Stored size: 720 Bytes

Contents

#import "./currentUserAttributes.gql"

query($id: String!, $match: String, $first: Int, $last: Int) {
  host(id: $id) {
    id
    ansibleVariablesWithOverrides(first: $first, last: $last) {
      totalCount
      nodes {
        id
        key
        meta {
          canEdit
        }
        defaultValue
        parameterType
        ansibleRoleName
        validatorType
        validatorRule
        required
        lookupValues(match: $match) {
          nodes {
            id
            match
            value
            omit
          }
        }
        currentValue {
          value
          element
          elementName
        }
      }
    }
  }
  currentUser {
    ...CurrentUserAttributes
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
foreman_ansible-7.0.1 webpack/graphql/queries/hostVariableOverrides.gql
foreman_ansible-7.0.0 webpack/graphql/queries/hostVariableOverrides.gql