Skip to content

Commit 8532d3d

Browse files
feat: APP-852 data events indexed (#2791)
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent dc6152f commit 8532d3d

File tree

11 files changed

+60265
-14285
lines changed

11 files changed

+60265
-14285
lines changed

web-marketplace/indexer-graphql.schema.json

Lines changed: 53811 additions & 13994 deletions
Large diffs are not rendered by default.

web-marketplace/src/components/organisms/DashboardNavigation/DashboardNavigation.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ export const DashboardNavigation = ({
9696
),
9797
[
9898
_,
99-
activeAccount.type,
10099
loginDisabled,
101100
collapsed,
102101
isIssuer,

web-marketplace/src/generated/indexer-graphql.tsx

Lines changed: 6312 additions & 36 deletions
Large diffs are not rendered by default.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
query IndexerAllDataEventsByIri($iri: String!) {
2+
allUnifiedDataEvents(
3+
orderBy: TIMESTAMP_DESC
4+
condition: { iri: $iri }
5+
) {
6+
nodes {
7+
iri
8+
attestor
9+
eventType
10+
blockHeight
11+
txHash
12+
timestamp
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)