Skip to content

Commit 6105529

Browse files
committed
fix: no uniq FastUsdcTransaction id
1 parent ff6dc9e commit 6105529

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

schema.graphql

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ enum FastUsdcTransactionStatus {
2525
}
2626

2727
type FastUsdcTransaction @entity {
28-
id: ID! @index(unique: true)
28+
# XXX causes 'index can not be added on field id' due to https://github.com/subquery/subql/blob/9e16bcc35439d926a14b126adf2d4746fa187fdc/packages/utils/src/graphql/entities.ts#L215-L237
29+
# id: ID! @index(unique: true)
30+
id: ID!
2931
"""
3032
EVM address from which the USCD funds originated
3133
"""

0 commit comments

Comments
 (0)