DCNConnection

Definition

Get a list of minted DIMO Canonical Names ordered by mintedAt timestamps in descending order.

Developer Notes

This GraphQL connection refers to the plural dcns, hence an argument is needed in order for the query to target the specific subset of results.


Arguments

Sample Query

{
    dcns(
        first: 10
        filterBy: { owner: "0x8E075A4696E84d5e69CA04F657Fac205FC9Fe31E" }
    ) {
        nodes {
            node
            owner
        }
    }
}

Last updated