OBJECT

GuardrailsDesiredStateTarget

Encapsulates account associations. The associations are expressed using one or more GuardrailsTargetExpressions.

link GraphQL Schema definition

  • type GuardrailsDesiredStateTarget {
  • # Will be set if there are one or more Desired State target expressions
  • #
  • # Arguments
  • # after: Return records after the given cursor, as per GraphQL
  • # Relay spec
  • # before: Return records before the given cursor, as per GraphQL
  • # Relay spec
  • # filter: Input filters to filter GuardrailsTargetExpressions
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • expression(
  • after: String,
  • before: String,
  • filter: GuardrailsTargetExpressionFilter,
  • first: Int
  • ): GuardrailsTargetExpressionConnection
  • # common meta to be applied across all applicable accounts
  • meta: GuardrailsAccountStateMeta
  • }