Identify all the artifacts with missing client checksum in a repo

ARTIFACTORY: How to identify and fix all artifacts with missing client checksums

AuthorFullName__c
Paul Pan
articleNumber
000005357
ft:sourceType
Salesforce
FirstPublishedDate
2022-08-03T11:15:55Z
lastModifiedDate
2024-03-26T14:17:23Z
VersionNumber
6
The fastest way to identify all the artifacts with missing Client Checksum is to run the following query:
  Select repo, node_path, node_name FROM nodes Where sha1_original IS NULL AND sha1_actual IS NOT NULL AND repo=’some_repo’;