Skip to content

Commit d9637fc

Browse files
committed
fix: bot notes
1 parent d58999f commit d9637fc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.changeset/dirty-snakes-knock.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"ensapi": minor
33
---
44

5-
Omnigraph API (BREAKING): Removed `ENSv2Domain.canonicalId` in favor of accessing `ENSv2Domain.tokenId` directly.
5+
Omnigraph API (BREAKING): Removed `ENSv2Domain.canonicalId`.

apps/ensapi/src/omnigraph-api/lib/find-domains/find-domains-resolver-helpers.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { describe, expect, it, vi } from "vitest";
22

33
vi.mock("@/config", () => ({ default: { namespace: "mainnet" } }));
4-
vi.mock("@/omnigraph-api/lib/find-domains/find-domains-by-labelhash-path", () => ({}));
54

65
import { isEffectiveDesc } from "./find-domains-resolver-helpers";
76

packages/enssdk/src/omnigraph/graphql.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ export const graphql = initGraphQLTada<{
2525
// NOTE: graphql clients don't really do deserialization of scalars like bigint, so instead we
2626
// just helpfully type the string as 'a stringified bigint'
2727
BigInt: `${bigint}`;
28-
// NOTE: keep these scalar types in sync with the scalars in apps/ensapi/src/omnigraph-api/builder.ts
28+
// NOTE: keep these semantic scalar types in sync with the scalars in apps/ensapi/src/omnigraph-api/builder.ts
29+
// (i.e. excluding the BigInt scalar, which we handle above)
2930
Address: Address;
3031
Hex: Hex;
3132
ChainId: ChainId;

0 commit comments

Comments
 (0)