diff --git a/.github/workflows/last-reviewed-backfill.yml b/.github/workflows/last-reviewed-backfill.yml index 3b0095b9af..7dc8722df7 100644 --- a/.github/workflows/last-reviewed-backfill.yml +++ b/.github/workflows/last-reviewed-backfill.yml @@ -59,7 +59,7 @@ jobs: // writers const setDate = async (itemId, fieldId, iso) => { if (dryRun) return console.log(`[DRY RUN] setDate item=${itemId} -> ${iso}`); - const m = `mutation($p:ID!,$i:ID!,$f:ID!,$d:String!){ + const m = `mutation($p:ID!,$i:ID!,$f:ID!,$d:Date!){ updateProjectV2ItemFieldValue(input:{projectId:$p,itemId:$i,fieldId:$f,value:{date:$d}}){ projectV2Item{ id } }}`;