From 94e246e6947a2f214777450fe1ae64c7a806c303 Mon Sep 17 00:00:00 2001 From: Carlos V Date: Tue, 14 May 2024 22:31:56 +0000 Subject: [PATCH] fix: Set transaction as inmutable --- schema.graphql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema.graphql b/schema.graphql index f0f25b7..bb4f171 100644 --- a/schema.graphql +++ b/schema.graphql @@ -25,7 +25,7 @@ type Receiver @entity { transactions: [Transaction!] @derivedFrom(field: "receiver") } -type Transaction @entity{ +type Transaction @entity(immutable: true){ id: Bytes! transactionGroupID: Bytes! type: String!