OBJECT

GuardrailsTypes

link GraphQL Schema definition

  • type GuardrailsTypes {
  • # desired states impacting this entity
  • #
  • # 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
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • desiredStates(after: String, before: String, first: Int): GuardrailsDesiredStateConnection!
  • # last enforced states on this entity
  • #
  • # 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
  • # cspProjectEntityId: Return enforced states belonging to
  • # provided projects
  • # drifted: Return only drifted enforced states
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • # from: Filter from date time
  • # sort: Results are sorted as per fields and order specified.
  • # Supported fields are createdBy, updatedBy, status, stateId, stateRef
  • # to: Filter to date time
  • enforcedStates(
  • after: String,
  • before: String,
  • cspProjectEntityId: [EntityId!],
  • drifted: Boolean,
  • first: Int,
  • from: DateTime,
  • sort: [QuerySort!],
  • to: DateTime
  • ): GuardrailsEnforcedStateConnection!
  • # guardrails account state representation for this entity if applicable.
  • guardrailsAccountState: GuardrailsAccountState
  • }