ENS Subgraph Queries for ContentHash

With this query, we can get the latest 100 ENS domains with a contenthash.

{
  contenthashChangeds(
    first: 100,
    orderBy: blockNumber,
    orderDirection: desc,
    where: {
      resolver_: {
        contentHash_not: "0x"
      }
    }
  ) {
    blockNumber
    resolver {
      contentHash
      domain {
        name
      }
    }
  }
}

Next things we can do: