Skip to content

Commit 8acdbcc

Browse files
authored
Merge branch 'dev' into chore/update-hardhat-toolchain
2 parents 302f102 + b11b578 commit 8acdbcc

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

veascan-web/src/gql/gql.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ import { TypedDocumentNode as DocumentNode } from "@graphql-typed-document-node/
1515
const documents = {
1616
"\n query getSnapshot($epoch: BigInt!, $contract: String!) {\n snapshots(where: { epoch: $epoch, inbox: $contract }) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n }\n":
1717
types.GetSnapshotDocument,
18-
'\n query getSnapshots($snapshotsPerPage: Int, $lastTimestamp: BigInt!, $contract: String!) {\n snapshots(\n first: $snapshotsPerPage\n orderBy: timestamp\n orderDirection: desc\n where: { timestamp_lte: $lastTimestamp, inbox: $contract }\n ) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n ref(id: "0") {\n currentSnapshotIndex\n }\n }\n':
18+
'\n query getSnapshots(\n $snapshotsPerPage: Int\n $lastTimestamp: BigInt!\n $contract: String!\n ) {\n snapshots(\n first: $snapshotsPerPage\n orderBy: timestamp\n orderDirection: desc\n where: { timestamp_lte: $lastTimestamp, inbox: $contract }\n ) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n ref(id: "0") {\n currentSnapshotIndex\n }\n }\n':
1919
types.GetSnapshotsDocument,
20-
'\n query getResolvingSnapshots(\n $snapshotsPerPage: Int\n $lastTimestamp: BigInt!\n $resolving: Boolean = true\n $contract: String!\n ) {\n snapshots(\n first: $snapshotsPerPage\n orderBy: timestamp\n orderDirection: desc\n where: { timestamp_lte: $lastTimestamp, resolving: $resolving, inbox: $contract }\n ) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n ref(id: "0") {\n currentSnapshotIndex\n }\n }\n':
20+
'\n query getResolvingSnapshots(\n $snapshotsPerPage: Int\n $lastTimestamp: BigInt!\n $resolving: Boolean = true\n $contract: String!\n ) {\n snapshots(\n first: $snapshotsPerPage\n orderBy: timestamp\n orderDirection: desc\n where: {\n timestamp_lte: $lastTimestamp\n resolving: $resolving\n inbox: $contract\n }\n ) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n ref(id: "0") {\n currentSnapshotIndex\n }\n }\n':
2121
types.GetResolvingSnapshotsDocument,
22-
"\n query searchSnapshots($snapshotsPerPage: Int, $value: String!, $contract: String!) {\n snapshotQuery(text: $value, first: $snapshotsPerPage, where: { inbox: $contract }) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n }\n":
22+
"\n query searchSnapshots(\n $snapshotsPerPage: Int\n $value: String!\n $contract: String!\n ) {\n snapshotQuery(\n text: $value\n first: $snapshotsPerPage\n where: { inbox: $contract }\n ) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n }\n":
2323
types.SearchSnapshotsDocument,
2424
"\n query getMessages($skip: Int!, $snapshot: String!, $snapshotID: ID!) {\n messages(\n first: 5\n skip: $skip\n orderBy: timestamp\n orderDirection: desc\n where: { snapshot: $snapshot }\n ) {\n id\n txHash\n timestamp\n from\n to\n data\n }\n snapshot(id: $snapshotID) {\n numberMessages\n }\n }\n":
2525
types.GetMessagesDocument,
@@ -61,20 +61,20 @@ export function graphql(
6161
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
6262
*/
6363
export function graphql(
64-
source: '\n query getSnapshots($snapshotsPerPage: Int, $lastTimestamp: BigInt!, $contract: String!) {\n snapshots(\n first: $snapshotsPerPage\n orderBy: timestamp\n orderDirection: desc\n where: { timestamp_lte: $lastTimestamp, inbox: $contract }\n ) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n ref(id: "0") {\n currentSnapshotIndex\n }\n }\n'
65-
): (typeof documents)['\n query getSnapshots($snapshotsPerPage: Int, $lastTimestamp: BigInt!, $contract: String!) {\n snapshots(\n first: $snapshotsPerPage\n orderBy: timestamp\n orderDirection: desc\n where: { timestamp_lte: $lastTimestamp, inbox: $contract }\n ) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n ref(id: "0") {\n currentSnapshotIndex\n }\n }\n'];
64+
source: '\n query getSnapshots(\n $snapshotsPerPage: Int\n $lastTimestamp: BigInt!\n $contract: String!\n ) {\n snapshots(\n first: $snapshotsPerPage\n orderBy: timestamp\n orderDirection: desc\n where: { timestamp_lte: $lastTimestamp, inbox: $contract }\n ) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n ref(id: "0") {\n currentSnapshotIndex\n }\n }\n'
65+
): (typeof documents)['\n query getSnapshots(\n $snapshotsPerPage: Int\n $lastTimestamp: BigInt!\n $contract: String!\n ) {\n snapshots(\n first: $snapshotsPerPage\n orderBy: timestamp\n orderDirection: desc\n where: { timestamp_lte: $lastTimestamp, inbox: $contract }\n ) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n ref(id: "0") {\n currentSnapshotIndex\n }\n }\n'];
6666
/**
6767
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
6868
*/
6969
export function graphql(
70-
source: '\n query getResolvingSnapshots(\n $snapshotsPerPage: Int\n $lastTimestamp: BigInt!\n $resolving: Boolean = true\n $contract: String!\n ) {\n snapshots(\n first: $snapshotsPerPage\n orderBy: timestamp\n orderDirection: desc\n where: { timestamp_lte: $lastTimestamp, resolving: $resolving, inbox: $contract }\n ) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n ref(id: "0") {\n currentSnapshotIndex\n }\n }\n'
71-
): (typeof documents)['\n query getResolvingSnapshots(\n $snapshotsPerPage: Int\n $lastTimestamp: BigInt!\n $resolving: Boolean = true\n $contract: String!\n ) {\n snapshots(\n first: $snapshotsPerPage\n orderBy: timestamp\n orderDirection: desc\n where: { timestamp_lte: $lastTimestamp, resolving: $resolving, inbox: $contract }\n ) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n ref(id: "0") {\n currentSnapshotIndex\n }\n }\n'];
70+
source: '\n query getResolvingSnapshots(\n $snapshotsPerPage: Int\n $lastTimestamp: BigInt!\n $resolving: Boolean = true\n $contract: String!\n ) {\n snapshots(\n first: $snapshotsPerPage\n orderBy: timestamp\n orderDirection: desc\n where: {\n timestamp_lte: $lastTimestamp\n resolving: $resolving\n inbox: $contract\n }\n ) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n ref(id: "0") {\n currentSnapshotIndex\n }\n }\n'
71+
): (typeof documents)['\n query getResolvingSnapshots(\n $snapshotsPerPage: Int\n $lastTimestamp: BigInt!\n $resolving: Boolean = true\n $contract: String!\n ) {\n snapshots(\n first: $snapshotsPerPage\n orderBy: timestamp\n orderDirection: desc\n where: {\n timestamp_lte: $lastTimestamp\n resolving: $resolving\n inbox: $contract\n }\n ) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n ref(id: "0") {\n currentSnapshotIndex\n }\n }\n'];
7272
/**
7373
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
7474
*/
7575
export function graphql(
76-
source: "\n query searchSnapshots($snapshotsPerPage: Int, $value: String!, $contract: String!) {\n snapshotQuery(text: $value, first: $snapshotsPerPage, where: { inbox: $contract }) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n }\n"
77-
): (typeof documents)["\n query searchSnapshots($snapshotsPerPage: Int, $value: String!, $contract: String!) {\n snapshotQuery(text: $value, first: $snapshotsPerPage, where: { inbox: $contract }) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n }\n"];
76+
source: "\n query searchSnapshots(\n $snapshotsPerPage: Int\n $value: String!\n $contract: String!\n ) {\n snapshotQuery(\n text: $value\n first: $snapshotsPerPage\n where: { inbox: $contract }\n ) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n }\n"
77+
): (typeof documents)["\n query searchSnapshots(\n $snapshotsPerPage: Int\n $value: String!\n $contract: String!\n ) {\n snapshotQuery(\n text: $value\n first: $snapshotsPerPage\n where: { inbox: $contract }\n ) {\n id\n epoch\n caller\n txHash\n timestamp\n stateRoot\n numberMessages\n saved\n resolving\n fallback(first: 1, orderBy: timestamp, orderDirection: desc) {\n executor\n timestamp\n txHash\n ticketId\n }\n }\n }\n"];
7878
/**
7979
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
8080
*/

0 commit comments

Comments
 (0)