upsertDataQualities
mutation
upsertDataQualitiesWith this mutation you can add or update multiple quality checks on a single table.
Quality checks are unique per tableId and externalId combination.
Thus, for a given tableId and externalId pair, we only keep the latest test run.
This means that for the provided checks, if the runAt value is set after the existing one, the new value will replace it. If however one test exists on those keys and has a runAt after the one you’re trying to insert, it will not be added.
upsertDataQualities(
data: UpsertQualityChecksInput!
): [QualityCheck!]!